From 6a05481c6c7b264920df39210359b007ee677e7a Mon Sep 17 00:00:00 2001 From: "Zenokwei a.k.a ILuvGemz" <76889022+ILuvGemz@users.noreply.github.com> Date: Tue, 4 May 2021 20:41:48 +0700 Subject: [PATCH] Tween ins Tween outs and tween linear Added tween ins tween outs and tween linear for all available tweens --- source/ModchartState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ModchartState.hx b/source/ModchartState.hx index e932fdd..d3b8e53 100644 --- a/source/ModchartState.hx +++ b/source/ModchartState.hx @@ -617,7 +617,7 @@ class ModchartState Lua_helper.add_callback(lua,"tweenFadeOut", function(id:String, toAlpha:Float, time:Float, onComplete:String) { FlxTween.tween(getActorByName(id), {alpha: toAlpha}, time, {ease: FlxEase.circOut, onComplete: function(flxTween:FlxTween) { if (onComplete != '' && onComplete != null) {callLua(onComplete,[id]);}}}); }); - +//forgot and accidentally commit to master branch // shader /*Lua_helper.add_callback(lua,"createShader", function(frag:String,vert:String) {