mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-25 00:06:40 +00:00
Fix deprecation issue with FlxTweenType.
This commit is contained in:
parent
f14193e17b
commit
f4d4d6a194
|
@ -138,7 +138,7 @@ class CopyItemsCommand implements ChartEditorCommand
|
|||
state.txtCopyNotif.y = FlxG.mouse.y - 16;
|
||||
FlxTween.tween(state.txtCopyNotif, {y: state.txtCopyNotif.y - 32}, 0.5,
|
||||
{
|
||||
type: FlxTween.ONESHOT,
|
||||
type: FlxTweenType.ONESHOT,
|
||||
ease: FlxEase.quadOut,
|
||||
onComplete: function(_) {
|
||||
state.txtCopyNotif.visible = false;
|
||||
|
|
Loading…
Reference in a new issue