You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
using UnityEngine;
|
|
using System.Collections;
|
|
using TMPro;
|
|
|
|
|
|
public class AdjustTimeScale : MonoBehaviour
|
|
{
|
|
TextMeshProUGUI textMesh;
|
|
|
|
private void Start()
|
|
{
|
|
textMesh = GetComponent<TextMeshProUGUI>();
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
if (Input.GetAxis("Mouse ScrollWheel") > 0f)
|
|
{
|
|
if (Time.timeScale < 1.0F)
|
|
{
|
|
Time.timeScale += 0.1f;
|
|
}
|
|
|
|
Time.fixedDeltaTime = 0.02F * Time.timeScale;
|
|
|
|
if (textMesh != null)
|
|
{
|
|
textMesh.text = "Time Scale : " + System.Math.Round(Time.timeScale, 2);
|
|
}
|
|
|
|
}
|
|
else if (Input.GetAxis("Mouse ScrollWheel") < 0f)
|
|
{
|
|
if (Time.timeScale >= 0.2F)
|
|
{
|
|
Time.timeScale -= 0.1f;
|
|
}
|
|
|
|
Time.fixedDeltaTime = 0.02F * Time.timeScale;
|
|
|
|
if (textMesh != null)
|
|
{
|
|
textMesh.text = "Time Scale : " + System.Math.Round(Time.timeScale, 2);
|
|
}
|
|
}
|
|
}
|
|
|
|
void OnApplicationQuit()
|
|
{
|
|
Time.timeScale = 1.0F;
|
|
Time.fixedDeltaTime = 0.02F;
|
|
}
|
|
} |