mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
23 lines
No EOL
781 B
C#
23 lines
No EOL
781 B
C#
using UnityEngine;
|
|
|
|
namespace BezierSolution
|
|
{
|
|
public enum TravelMode { Once = 0, Loop = 1, PingPong = 2 };
|
|
public enum LookAtMode { None = 0, Forward = 1, SplineExtraData = 2 }
|
|
|
|
public abstract class BezierWalker : MonoBehaviour
|
|
{
|
|
public abstract BezierSpline Spline { get; }
|
|
public abstract bool MovingForward { get; }
|
|
public abstract float NormalizedT { get; set; }
|
|
|
|
public abstract void Execute( float deltaTime );
|
|
|
|
public static readonly ExtraDataLerpFunction extraDataLerpAsQuaternionFunction = InterpolateExtraDataAsQuaternion;
|
|
|
|
private static BezierPoint.ExtraData InterpolateExtraDataAsQuaternion( BezierPoint.ExtraData data1, BezierPoint.ExtraData data2, float normalizedT )
|
|
{
|
|
return Quaternion.LerpUnclamped( data1, data2, normalizedT );
|
|
}
|
|
}
|
|
} |