Version: 5.6
public static float timeScale ;

説明

時間の経過をスケールします。これはスローモーション効果で使用できます。

When timeScale is 1.0 the time is passing as fast as realtime. When timeScale is 0.5 the time is passing 2x slower than realtime.

When timeScale is set to zero the game is basically paused if all your functions are frame rate independent.

ref::realtimeSinceStartup を除いて timeScale はすべての時間とデルタ時間を測定する Time クラスの変数が影響します。

TimeScale を低くした場合、同じ量でもより低い Time.fixedDeltaTime を勧めます。

TimeScale がゼロに設定されている場合、FixedUpdate 関数は呼び出されません。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Update() { if (Input.GetButtonDown("Fire1")) { if (Time.timeScale == 1.0F) Time.timeScale = 0.7F; else Time.timeScale = 1.0F; Time.fixedDeltaTime = 0.02F * Time.timeScale; } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961