提交修改

This commit is contained in:
Bob.Song
2026-04-29 17:33:49 +08:00
parent a8f3569787
commit 70769f7e39
33 changed files with 237 additions and 96 deletions

View File

@@ -0,0 +1,22 @@
using UnityEngine;
namespace NBF
{
public interface IPlayerThrowAnimation
{
Player Player { get; set; }
bool IsPlaying { get; }
void Play(ThrowAnimationRequest request);
void Tick(float deltaTime);
void Stop(bool snapToTarget);
}
public struct ThrowAnimationRequest
{
public FLineLogicNode EndNode;
public Vector3 ThrowOriginPosition;
public Vector3 StartPosition;
public Vector3 Forward;
public float ChargedProgress;
}
}