您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
53 行
1.1 KiB
53 行
1.1 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;
|
|
}
|
|
}
|