Maze / Library /PackageCache /com.unity.timeline@1.6.5 /Editor /treeview /TrackPropertyCurvesDataSource.cs
nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame
376 Bytes
using UnityEngine;
using UnityEngine.Timeline;
namespace UnityEditor.Timeline
{
class TrackPropertyCurvesDataSource : BasePropertyKeyDataSource
{
protected override AnimationClip animationClip { get; }
public TrackPropertyCurvesDataSource(TrackAsset track)
{
animationClip = track != null ? track.curves : null;
}
}
}