您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
104 行
3.4 KiB
104 行
3.4 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Playables;
|
|
using UnityEngine.Timeline;
|
|
using NaughtyAttributes;
|
|
|
|
namespace GameplayIngredients.Rigs
|
|
{
|
|
public class DirectorControlRig : MonoBehaviour
|
|
{
|
|
public enum PlayMode
|
|
{
|
|
Stop,
|
|
Play,
|
|
Reverse
|
|
}
|
|
|
|
public enum WrapMode
|
|
{
|
|
Stop,
|
|
Loop,
|
|
PingPong
|
|
}
|
|
|
|
[NonNullCheck]
|
|
public PlayableDirector director;
|
|
|
|
public PlayMode InitialPlayMode = PlayMode.Play;
|
|
public float InitialTime = 0.0f;
|
|
public bool UnscaledGameTime = false;
|
|
|
|
public WrapMode wrapMode = WrapMode.Stop;
|
|
|
|
public PlayMode playMode { get { return m_PlayMode; } set { m_PlayMode = value; } }
|
|
public float stopTime { get { return m_StopTime; } set { m_StopTime = value; } }
|
|
[ShowNativeProperty]
|
|
public float time { get { return (float)director.time; } set { director.time = value; } }
|
|
public TimelineAsset timeline { get { return director.playableAsset as TimelineAsset; } set { director.playableAsset = value; } }
|
|
|
|
float m_StopTime = -1.0f;
|
|
PlayMode m_PlayMode;
|
|
|
|
private void OnEnable()
|
|
{
|
|
if (director != null)
|
|
{
|
|
m_PlayMode = InitialPlayMode;
|
|
director.timeUpdateMode = DirectorUpdateMode.Manual;
|
|
director.time = InitialTime;
|
|
}
|
|
}
|
|
|
|
public void Update()
|
|
{
|
|
if(m_PlayMode != PlayMode.Stop)
|
|
{
|
|
float dt = UnscaledGameTime? Time.unscaledDeltaTime : Time.deltaTime;
|
|
|
|
float prevTime = (float)director.time;
|
|
float newTime = prevTime + (m_PlayMode == PlayMode.Reverse ? -1.0f : 1.0f) * dt;
|
|
|
|
if (m_StopTime >= 0.0f &&
|
|
( (m_PlayMode == PlayMode.Play && prevTime < m_StopTime && m_StopTime <= newTime)
|
|
|| (m_PlayMode == PlayMode.Reverse && newTime <= m_StopTime && m_StopTime < prevTime)
|
|
))
|
|
{
|
|
director.time = m_StopTime;
|
|
m_PlayMode = PlayMode.Stop;
|
|
m_StopTime = -1.0f;
|
|
}
|
|
else
|
|
director.time = newTime;
|
|
|
|
director.Evaluate();
|
|
|
|
if((director.time <= 0.0f && m_PlayMode == PlayMode.Reverse) ||
|
|
(director.time >= director.playableAsset.duration && m_PlayMode == PlayMode.Play))
|
|
{
|
|
switch(wrapMode)
|
|
{
|
|
case WrapMode.Loop:
|
|
if (director.time <= 0.0f)
|
|
director.time = director.playableAsset.duration;
|
|
else
|
|
director.time = 0.0f;
|
|
break;
|
|
case WrapMode.PingPong:
|
|
if (m_PlayMode == PlayMode.Play)
|
|
m_PlayMode = PlayMode.Reverse;
|
|
else if (m_PlayMode == PlayMode.Reverse)
|
|
m_PlayMode = PlayMode.Play;
|
|
break;
|
|
case WrapMode.Stop:
|
|
m_PlayMode = PlayMode.Stop;
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|