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.

WebCamTexture.WebCamTexture

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 WebCamTexture()
public WebCamTexture();
public WebCamTexture(requestedWidth: int, requestedHeight: int, requestedFPS: int)
public WebCamTexture(int requestedWidth, int requestedHeight, int requestedFPS);
public WebCamTexture(requestedWidth: int, requestedHeight: int)
public WebCamTexture(int requestedWidth, int requestedHeight);
public WebCamTexture(deviceName: string)
public WebCamTexture(string deviceName);
public WebCamTexture(deviceName: string, requestedWidth: int, requestedHeight: int)
public WebCamTexture(string deviceName, int requestedWidth, int requestedHeight);
public WebCamTexture(deviceName: string, requestedWidth: int, requestedHeight: int, requestedFPS: int)
public WebCamTexture(string deviceName, int requestedWidth, int requestedHeight, int requestedFPS);

Parámetros

deviceName The name of the video input device to be used.
requestedWidth The requested width of the texture.
requestedHeight The requested height of the texture.
requestedFPS The requested frame rate of the texture.

Descripción

Create a WebCamTexture.

Use WebCamTexture.devices to get a list of the names of available camera devices. If no device name is supplied to the constructor or is passed as a null string, the first device found will be used.

The requested width, height and framerate specified by the parameters may not be supported by the chosen camera. In such cases, the closest available values will be used.

Note: if you want to use WebCamTextures in the web player, you need to get the user's permission to do so. Call Application.RequestUserAuthorization before creating a WebCamTexture.

Note: if you want to use WebCamTexture to play the camera stream from device connected through Unity Remote, then you must initalize it through the constructor. Later it's not possible to change device using WebCamTexture.deviceName from regular devices to remote devices and vice versa.