mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 11:22:55 +00:00
fuck these decimals messing up my compiling
This commit is contained in:
parent
3b7e656793
commit
270748d108
|
@ -1527,7 +1527,7 @@ class FreeplayState extends MusicBeatSubState
|
||||||
var moveDataX = funnyMoveShit.x ?? spr.x;
|
var moveDataX = funnyMoveShit.x ?? spr.x;
|
||||||
var moveDataY = funnyMoveShit.y ?? spr.y;
|
var moveDataY = funnyMoveShit.y ?? spr.y;
|
||||||
var moveDataSpeed = funnyMoveShit.speed ?? 0.2;
|
var moveDataSpeed = funnyMoveShit.speed ?? 0.2;
|
||||||
var moveDataWait = funnyMoveShit.wait ?? 0;
|
var moveDataWait = funnyMoveShit.wait ?? 0.0;
|
||||||
|
|
||||||
FlxTween.tween(spr, {x: moveDataX, y: moveDataY}, moveDataSpeed, {ease: FlxEase.expoIn});
|
FlxTween.tween(spr, {x: moveDataX, y: moveDataY}, moveDataSpeed, {ease: FlxEase.expoIn});
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ class LevelProp extends Bopper
|
||||||
this.propData = value;
|
this.propData = value;
|
||||||
|
|
||||||
this.visible = this.propData != null;
|
this.visible = this.propData != null;
|
||||||
danceEvery = this.propData?.danceEvery ?? 0;
|
danceEvery = this.propData?.danceEvery ?? 0.0;
|
||||||
|
|
||||||
applyData();
|
applyData();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue