Skip to content

Commit

Permalink
ConsoleFrontEnd: some doc formatting
Browse files Browse the repository at this point in the history
see #1910
[skip ci]
  • Loading branch information
Gama11 committed Aug 21, 2016
1 parent 4f89891 commit 5139c20
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions flixel/system/frontEnds/ConsoleFrontEnd.hx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ import flixel.FlxG;
class ConsoleFrontEnd
{
/**
* Whether the console should auto-pause or not when it's focused. Only works for flash atm.
* Whether the console should auto-pause or not when it's focused.
*/
public var autoPause:Bool = true;

/**
* Whether the console should step() the game after a command is entered.
* Setting this to false allows inputting multiple console commands within the same frame. Use the "step()" command to step the game from the console.
* Whether the console should `step()` the game after a command is entered.
* Setting this to `false` allows inputting multiple console commands within the same frame.
* Use the `step()` command to step the game from the console.
*/
public var stepAfterCommand:Bool = true;

Expand Down Expand Up @@ -44,7 +45,7 @@ class ConsoleFrontEnd
/**
* Register a new class to use in any command.
*
* @param cl The class to register.
* @param cl The class to register.
*/
public inline function registerClass(cl:Class<Dynamic>):Void
{
Expand Down

0 comments on commit 5139c20

Please sign in to comment.