Feature requests: Console [SOLVED]


(Darrin) #1

The first would be very nice to have. The second would okay as redundant with trace though a bit easier to use.

  1. A show hitbox boolean would be awesome on console. I didn’t even know this existed until a little while ago. It is very helpful.

    	override public function render():void
    {
    	super.render();			
    	var o:Array = new Array();
    	getAll(o);
    	for each (var e:Entity in o)
    	{
    		Draw.hitbox(e, true, 0xFF0000, 1);
    	}
    }
    
  2. FP.log() would be nice to have out put that is scroll-able.

  3. FP.log() could also shadow trace.


(Jacob Albano) #2

Both of these features exist already.

FP.console.enable();
FP.console.toggleKey = Key.F1; // required if you use Bootcamp; default is ~

(Darrin) #3

Jacob,

Learned something today. Thanks!

Darrin