hallowed-ocean-84954
02/22/2023, 4:51 AMambitious-knife-25690
02/22/2023, 5:09 AMtall-teacher-57409
02/22/2023, 11:00 AMambitious-knife-25690
02/22/2023, 12:01 PMtall-teacher-57409
02/22/2023, 12:03 PMimportant-egg-61899
02/22/2023, 1:55 PMimportant-egg-61899
02/22/2023, 1:57 PMwitty-island-52596
02/22/2023, 1:59 PMimportant-egg-61899
02/22/2023, 1:59 PMimportant-egg-61899
02/22/2023, 1:59 PMimportant-egg-61899
02/22/2023, 2:00 PMimportant-egg-61899
02/22/2023, 2:00 PMhaxe
if (FlxG.keys.justPressed.I)
{
trace("speed: " + char.speed);
trace("velocity.x: " + char.velocity.x);
trace("sonic framerate: " + char.animation.curAnim.frameRate);
trace("sonic anim name: " + char.animation.curAnim.name);
}
// walkingFrame = char.animation.curAnim.curFrame;
char.origin.set(char.width / 2, char.height);
char.speed = char.velocity.x / 2;
char.animation.curAnim.frameRate = flixel.math.FlxMath.absInt(Std.int(char.speed)) / 1.5;
if (flixel.math.FlxMath.absInt(Std.int(char.speed)) > 40 && char.animation.curAnim.name == 'walk')
{
char.playAnim('run');
}
if (flixel.math.FlxMath.absInt(Std.int(char.speed)) < 40 && char.animation.curAnim.name == 'run')
{
char.playAnim('walk');
}
if (FlxG.keys.justPressed.A || FlxG.keys.justPressed.D)
{
timeWalking = 0;
char.playAnim('walk');
trace('walk');
}
if (FlxG.keys.pressed.W)
{
char.playAnim('up');
}
else if (FlxG.keys.pressed.S)
{
char.playAnim('down');
}
if (FlxG.keys.pressed.D)
{
char.flipX = false;
if (timeWalking == 0)
char.velocity.x += 2;
else
char.velocity.x += 1;
timeWalking += 1;
}
else if (FlxG.keys.pressed.A)
{
char.flipX = true;
if (timeWalking == 0)
char.velocity.x -= 2;
else
char.velocity.x -= 1;
timeWalking += 1;
}
else
{
if (lastX == char.x && char.animation.curAnim.name != 'idle')
{
char.playAnim('idle');
}
}
lastX = char.x;
super.update(elapsed);
witty-island-52596
02/22/2023, 2:00 PMimportant-egg-61899
02/22/2023, 2:00 PMimportant-egg-61899
02/22/2023, 2:01 PMbroad-gpu-14081
02/22/2023, 2:01 PMhaxe
if () {
}
over
haxe
if ()
{
}
witty-island-52596
02/22/2023, 2:01 PMimportant-egg-61899
02/22/2023, 2:01 PMwitty-island-52596
02/22/2023, 2:01 PMwitty-island-52596
02/22/2023, 2:01 PMbroad-gpu-14081
02/22/2023, 2:02 PMbroad-gpu-14081
02/22/2023, 2:02 PMambitious-knife-25690
02/22/2023, 2:02 PMimportant-egg-61899
02/22/2023, 2:02 PMimportant-egg-61899
02/22/2023, 2:02 PMambitious-knife-25690
02/22/2023, 2:02 PMimportant-egg-61899
02/22/2023, 2:07 PMimportant-egg-61899
02/22/2023, 2:07 PMimportant-egg-61899
02/22/2023, 2:07 PMimportant-egg-61899
02/22/2023, 2:08 PM