该脚本附加到空的 GameObject :using System.Collections;using System.Collections.Generic;using UnityEngine;public class SlowDown : MonoBehaviour{ [Range(0,0.25f)] public float isTime = 0.25f; private void Update() { Time.timeScale = isTime; }}运行游戏后速度会变慢,但也会全屏显示:
添加回答
举报
0/150
提交
取消