File size: 457 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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;
}
}
|