Map Editor Changes

* Removed Ogmo and replaced with Ldtk.
* TODO - Level Transitions
This commit is contained in:
Indrajith K L
2022-04-29 02:27:58 +05:30
parent ad2056876e
commit 6d82254873
14 changed files with 629 additions and 184 deletions

View File

@@ -13,14 +13,14 @@ class Player extends FlxSprite
var _left:FlxActionDigital;
var _right:FlxActionDigital;
var _jump:FlxActionDigital;
var _jumpPower:Int = 200;
var _jumpPower:Int = 230;
public function new(x:Int, y:Int)
{
super(x, y);
makeGraphic(16, 16, FlxColor.BLUE);
var runSpeed:Int = 80;
var runSpeed:Int = 120;
drag.x = runSpeed * 8;
acceleration.y = 420;
maxVelocity.set(runSpeed, _jumpPower);