mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
15 lines
376 B
C#
15 lines
376 B
C#
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;
|
|
}
|
|
}
|
|
}
|