using UnityEngine; namespace Chernobyl.Unity { /// /// Enables control of time through the Unity Editor. /// [CreateAssetMenu] public class Time : ScriptableObject { /// /// See for more info. /// public void SetTimeScale(float value) => UnityEngine.Time.timeScale = value; } }