Gameplay Ingredients是一组用于 Unity 游戏的运行时和编辑器工具:一组脚本的集合,可在制作游戏和原型时简化简单的任务。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

71 行
2.0 KiB

using UnityEngine;
namespace GameplayIngredients
{
[AddComponentMenu(ComponentMenu.timerPath + "Timer")]
[HelpURL(Help.URL + "timers")]
[AdvancedHierarchyIcon("Packages/net.peeweek.gameplay-ingredients/Icons/Misc/ic-timer.png")]
public class Timer : GameplayIngredientsBehaviour
{
public bool StartOnEnable = false;
public uint Hours = 0;
[Range(0,59)]
public uint Minutes = 1;
[Range(0,59)]
public uint Seconds = 30;
[Range(0,999)]
public uint Milliseconds = 0;
public uint CurrentHours { get { return (uint)Mathf.Floor(m_TTL / 3600); } }
public uint CurrentMinutes { get { return (uint)Mathf.Floor(m_TTL / 60) % 60; } }
public uint CurrentSeconds { get { return (uint)Mathf.Floor(m_TTL) % 60; } }
public uint CurrentMilliseconds { get { return (uint)((m_TTL % 1.0f) * 1000); } }
public Callable[] OnTimerFinished;
public Callable[] OnTimerInterrupt;
public Callable[] OnTimerStart;
float m_TTL = 0.0f;
public bool isRunning => m_TTL > 0.0f;
public void OnEnable()
{
if (StartOnEnable)
Restart();
else
m_TTL = 0.0f;
}
public void Restart(GameObject instigator = null)
{
m_TTL = Hours * 3600 + Minutes * 60 + Seconds + Milliseconds * 0.001f;
Callable.Call(OnTimerStart, instigator);
}
public void Update()
{
if(m_TTL > 0.0f)
{
m_TTL -= Time.deltaTime;
if (m_TTL <= 0.0f)
{
m_TTL = 0.0f;
Callable.Call(OnTimerFinished);
}
}
}
public void Interrupt(GameObject instigator = null)
{
if(m_TTL > 0.0f)
{
m_TTL = 0.0f;
Callable.Call(OnTimerInterrupt, instigator);
}
}
}
}