HUD Console ExtensionIf you miss the good ol' Flixel console, or just want a quick way to view your game logs, this extension is for you.

This extension also includes blocks to set up data fields, measure execution time, and the console can be extended with custom commands.
Download this Extension (v1.3).
Requires Stencyl 3.3+.For instructions see
How to Install and Update an Extension.
CreditsThe Console class was written by Fernando Medina. See his
blog post for the original version. For this extension, I just updated the class to haxe 3 and added the blocks.
Usage NotesPlease note that when you use this console, all output will be redirected to it and won't show up in the regular log viewer anymore.create consoleUse the "create console" block in "when created" in the first scene of your game. Then, when testing the game, you can hit Ctrl+1 to toggle the console. Alternatively, you can use the "show console" and "hide console" blocks. To write the the console use the "print" block as usual.
set data field ( name: ___ value: ___ )You can use this block to create and update a data field to monitor a value in your game. The data fields are printed on top of the console. (Note that the field is not automatically updated if the value of an attribute changes. It is only updated when you use this block.)
measure time ( name: ___ )You can measure the execution time of your code with this block. Use the block once before the code you want to measure and once after, with the same name. The results are displayed in milliseconds in a data field with the given name on the top of the console.
add command ___ — arguments If you feel like experimenting, you can extend the functionality of the console by adding your own commands. In version 1.1+ of this extension, this is an wrapper block. Just specify the name of the command, and when you enter it on the console it will execute the blocks in the wrapper. If you enter the command followed by some text, this text will be accessible through the "arguments" block.
show consolehide consoleShow/hide the console.
Version History1.0: Initial version
1.1: Make "add command" block a wrapper block. Version 1.1 requires Stencyl 3.2.
1.2: Update nme -> openfl
1.3: Add show and hide blocks. Version 1.3 requires Stencyl 3.3.