CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.timeline@1.7.6/Samples~/Customization/TimeDilation/TimeDilationBehaviour.cs
Spudnut2000 86e8b2168c Init
2024-10-01 23:23:13 -05:00

17 lines
457 B
C#

using System;
using UnityEngine;
using UnityEngine.Playables;
using UnityEngine.Timeline;
namespace Timeline.Samples
{
// Runtime representation of a time dilation clip.
// The Serializable attribute is required to be animated by timeline, and used as a template.
[Serializable]
public class TimeDilationBehaviour : PlayableBehaviour
{
[Tooltip("Time.timeScale replacement value.")]
public float timeScale = 1f;
}
}