Version: 2019.2
public static int sleepTimeout ;

説明

省電力設定。スクリーンが暗くなるまでのタイムアウトを設定します

Most useful for handheld devices, allowing OS to preserve battery life in most efficient ways. Does nothing on non-handheld devices.

sleepTimeout is measured in seconds. The default value varies from platform to platform, generally being non-zero.

On mobile devices it would be useful to set sleepTimeout to SleepTimeout.NeverSleep for games using accelerometer as the main source of input. However, such games should allow screen dimming while in menu or paused. Currently you will only be able to set this property to one of the values predefined in SleepTimeout class. A get will return either one of the predefined values, or the actual number of seconds until screen gets dimmed, as specified in system preferences of the device.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Disable screen dimming Screen.sleepTimeout = SleepTimeout.NeverSleep; } }

関連項目: SleepTimeout.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961