SW 중심대학 OSS GIT 서버
박건태, 이승준, 고기완, 이준호
새로운 배포
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System;using UnityEngine.Playables;
namespace UnityEngine.Timeline{ /// <summary>
/// Runtime clip customized for 'infinite' tracks playables.
/// Used for clips whose time needs to match the timelines exactly
/// </summary>
class InfiniteRuntimeClip : RuntimeElement { private Playable m_Playable; private static readonly Int64 kIntervalEnd = DiscreteTime.GetNearestTick(TimelineClip.kMaxTimeValue);
public InfiniteRuntimeClip(Playable playable) { m_Playable = playable; }
public override Int64 intervalStart { get { return 0; } }
public override Int64 intervalEnd { get { return kIntervalEnd; } }
public override bool enable { set { if (value) m_Playable.Play(); else m_Playable.Pause(); } }
public override void EvaluateAt(double localTime, FrameData frameData) { m_Playable.SetTime(localTime); } }}
|