Skip to content

Commit

Permalink
change type of Function_Stop and variations to String
Browse files Browse the repository at this point in the history
  • Loading branch information
LarryFrosty committed Sep 7, 2024
1 parent 07281fa commit f58923d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/psychlua/LuaUtils.hx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ typedef LuaTweenOptions = {

class LuaUtils
{
public static final Function_Stop:Dynamic = "##PSYCHLUA_FUNCTIONSTOP";
public static final Function_Continue:Dynamic = "##PSYCHLUA_FUNCTIONCONTINUE";
public static final Function_StopLua:Dynamic = "##PSYCHLUA_FUNCTIONSTOPLUA";
public static final Function_StopHScript:Dynamic = "##PSYCHLUA_FUNCTIONSTOPHSCRIPT";
public static final Function_StopAll:Dynamic = "##PSYCHLUA_FUNCTIONSTOPALL";
public static final Function_Stop:String = "##PSYCHLUA_FUNCTIONSTOP";
public static final Function_Continue:String = "##PSYCHLUA_FUNCTIONCONTINUE";
public static final Function_StopLua:String = "##PSYCHLUA_FUNCTIONSTOPLUA";
public static final Function_StopHScript:String = "##PSYCHLUA_FUNCTIONSTOPHSCRIPT";
public static final Function_StopAll:String = "##PSYCHLUA_FUNCTIONSTOPALL";

public static function getLuaTween(options:Dynamic)
{
Expand Down

0 comments on commit f58923d

Please sign in to comment.