提交修改

This commit is contained in:
2026-03-24 23:46:11 +08:00
parent af639cdefc
commit 09540ad1a8
22 changed files with 257 additions and 266 deletions

View File

@@ -0,0 +1,20 @@
using UnityEngine;
namespace NBF
{
public interface IPlayerThrowAnimation
{
bool IsPlaying { get; }
void Play(ThrowAnimationRequest request);
void Tick(float deltaTime);
void Stop(bool snapToTarget);
}
public struct ThrowAnimationRequest
{
public LureController Lure;
public Vector3 StartPosition;
public Vector3 Forward;
public float ChargedProgress;
}
}