Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Display.Activate

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function Activate(): void;
public void Activate();

Descripción

Activate an external display. Eg. Secondary Monitors connected to the System.

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.

// 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 function Activate(width: int, height: int, refreshRate: int): void;
public void Activate(int width, int height, int refreshRate);

Parámetros

width Desired Width of the Window (for Windows only. On Linux and Mac uses Screen Width).
height Desired Height of the Window (for Windows only. On Linux and Mac uses Screen Height).
refreshRate Desired Refresh Rate.

Descripción

This overloaded function available for Windows allows specifying desired Window Width, Height and Refresh Rate.

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

// 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);