Version: 2019.4
public void Activate ();

説明

拡張ディスプレイを有効にします。例えば、システムにセカンドディスプレイが接続されているような場合です。

The function Activate() will create a window of Screen width, Screen height and default Refresh Rates. This function is available on Windows, Linux and Mac platforms. The default primary Monitor is always indexed 0. Secondary Monitors range from 1 to 7. Ensure an external monitor is connected before Activating it.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Check the number of monitors connected. if (Display.displays.Length > 1) { // Activate the display 1 (second monitor connected to the system). Display.displays[1].Activate(); } } }

public void Activate (int width, int height, int refreshRate);

パラメーター

widthウインドウ幅 (Windows 専用。Linux と Mac では、スクリーン幅を使用します)
heightウインドウの高さ (Windows 専用。Linux と Mac では、スクリーンの高さを使用します)
refreshRateリフレッシュレート

説明

このオーバーロードされた関数は Windows で使用可能で、ウインドウの幅、高さ、リフレッシュレートを指定することができます。

The default primary Monitor is always indexed 0. Secondary Monitors range from 1 to 7. Ensure an external monitor is connected before Activating it.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Check the number of monitors connected. if (Display.displays.Length > 1) { // Activate the display 1 (second monitor connected to the system). Display.displays[1].Activate(0, 0, 60); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961