You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
2 months ago
|
// Animancer // Copyright 2020 Kybernetik //
|
||
|
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Animancer.Examples
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// A simple Inspector slider to control <see cref="Time.timeScale"/>.
|
||
|
/// </summary>
|
||
|
[AddComponentMenu(Strings.MenuPrefix + "Examples/Time Scale")]
|
||
|
public sealed class TimeScale : MonoBehaviour
|
||
|
{
|
||
|
/************************************************************************************************************************/
|
||
|
|
||
|
[SerializeField, Range(0, 1)]
|
||
|
private float _Value = 0.5f;
|
||
|
|
||
|
public float Value
|
||
|
{
|
||
|
get { return _Value; }
|
||
|
set
|
||
|
{
|
||
|
_Value = value;
|
||
|
|
||
|
#if UNITY_EDITOR
|
||
|
if (!UnityEditor.EditorApplication.isPlayingOrWillChangePlaymode)
|
||
|
return;
|
||
|
#endif
|
||
|
|
||
|
Time.timeScale = _Value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/************************************************************************************************************************/
|
||
|
|
||
|
private void Awake()
|
||
|
{
|
||
|
Value = _Value;
|
||
|
}
|
||
|
|
||
|
/************************************************************************************************************************/
|
||
|
|
||
|
private void OnValidate()
|
||
|
{
|
||
|
Value = _Value;
|
||
|
}
|
||
|
|
||
|
/************************************************************************************************************************/
|
||
|
}
|
||
|
}
|