22 lines
549 B
C#
22 lines
549 B
C#
using UnityEngine;
|
|
using UnityEngine.Scripting;
|
|
|
|
namespace IngameDebugConsole.Commands
|
|
{
|
|
public class TimeCommands
|
|
{
|
|
[ConsoleMethod("time.scale", "Sets the Time.timeScale value")]
|
|
[Preserve]
|
|
public static void SetTimeScale(float value)
|
|
{
|
|
Time.timeScale = Mathf.Max(value, 0f);
|
|
}
|
|
|
|
[ConsoleMethod("time.scale", "Returns the current Time.timeScale value")]
|
|
[Preserve]
|
|
public static float GetTimeScale()
|
|
{
|
|
return Time.timeScale;
|
|
}
|
|
}
|
|
} |