Changing demo title

This commit is contained in:
2018-12-17 12:46:44 -07:00
parent b5de369410
commit 2d33a0edbc
3 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
<project>
<!------------------------------APPLICATION SETTINGS---------------------------->
<app title="FlxTypeText" file="FlxTypeText" main="Main" version="0.0.1" company="HaxeFlixel" />
<app title="HankDemo" file="HankDemo" main="Main" version="0.0.1" company="NQN Studios" />
<!--The flixel preloader is not accurate in Chrome. You can use it regularly if you embed the swf into a html file
<!--or you can set the actual size of your file manually at "FlxPreloaderBase-onUpdate-bytesTotal"!-->

View File

@@ -29,6 +29,7 @@ class MenuState extends FlxState
var square = new FlxSprite(10, 10);
square.makeGraphic(FlxG.width - 20, FlxG.height - 76, 0xff333333);
// TODO populate this with text from the Story parser
_typeText = new FlxTypeText(15, 10, FlxG.width - 30, "Hello, and welcome to the FlxTypeText demo. You can press the buttons below and see the different ways to control this class. Enjoy! :)", 16, true);
_typeText.delay = 0.1;