11 lines
208 B
C#
11 lines
208 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.Playables;
|
||
|
using UnityEngine.Timeline;
|
||
|
|
||
|
[Serializable]
|
||
|
public class TimeDilationBehaviour : PlayableBehaviour
|
||
|
{
|
||
|
public float timeScale = 1f;
|
||
|
}
|