15 lines
408 B
C#
15 lines
408 B
C#
using SLSUtilities.FunctionalAnimation;
|
|
using UnityEngine;
|
|
|
|
namespace Cielonos.MainGame.FunctionalAnimation
|
|
{
|
|
public class InvokeAnimScFunction : FuncAnimPayloadBase
|
|
{
|
|
public string functionKey = "FunctionKey";
|
|
|
|
public override void Invoke()
|
|
{
|
|
runtimeFuncAnim.executor.animationSc.registeredFunctions[functionKey].Invoke(runtimeFuncAnim);
|
|
}
|
|
}
|
|
} |