KNU_SpaceShooter/Assets/03_Prefabs/ParticlePack/Shared/Scripts/AdjustTimeScale.cs
2024-09-12 14:02:37 +09:00

53 lines
1.2 KiB
C#

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;
}
}