FututeWand初步

This commit is contained in:
SoulliesOfficial
2026-07-01 06:32:50 -04:00
parent ddd387ef35
commit 347237443f
89 changed files with 290771 additions and 1084 deletions

View File

@@ -34,6 +34,14 @@ namespace Cielonos.MainGame.FunctionalAnimation
[HideIf("getFromBehaviorTree")]
public float targetSpeed = 1.0f;
public SetFuncAnimSpeed() { }
public SetFuncAnimSpeed(float speed, SpeedApplyMode mode = SpeedApplyMode.Override, bool getFromBehaviorTree = false)
{
targetSpeed = speed;
applyMode = mode;
this.getFromBehaviorTree = getFromBehaviorTree;
}
public override void Invoke()
{
if (Character == null || Character.animationSc == null) return;