1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-07-14 22:25:49 +00:00

Fix deprecation issue with FlxTweenType.

This commit is contained in:
EliteMasterEric 2024-02-12 16:49:56 -05:00
parent f14193e17b
commit f4d4d6a194

View file

@ -138,7 +138,7 @@ class CopyItemsCommand implements ChartEditorCommand
state.txtCopyNotif.y = FlxG.mouse.y - 16; state.txtCopyNotif.y = FlxG.mouse.y - 16;
FlxTween.tween(state.txtCopyNotif, {y: state.txtCopyNotif.y - 32}, 0.5, FlxTween.tween(state.txtCopyNotif, {y: state.txtCopyNotif.y - 32}, 0.5,
{ {
type: FlxTween.ONESHOT, type: FlxTweenType.ONESHOT,
ease: FlxEase.quadOut, ease: FlxEase.quadOut,
onComplete: function(_) { onComplete: function(_) {
state.txtCopyNotif.visible = false; state.txtCopyNotif.visible = false;