Files
Bachelor-Arbeit-Adrian-Haefner/Library/PackageCache/com.unity.timeline@fa3a0bab2b90/Runtime/Animation/ICurvesOwner.cs
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

16 lines
375 B
C#

namespace UnityEngine.Timeline
{
interface ICurvesOwner
{
AnimationClip curves { get; }
bool hasCurves { get; }
double duration { get; }
void CreateCurves(string curvesClipName);
string defaultCurvesName { get; }
Object asset { get; }
Object assetOwner { get; }
TrackAsset targetTrack { get; }
}
}