Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

WebCamTexture Constructor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public WebCamTexture();
public WebCamTexture(int requestedWidth, int requestedHeight, int requestedFPS);
public WebCamTexture(int requestedWidth, int requestedHeight);
public WebCamTexture(string deviceName);
public WebCamTexture(string deviceName, int requestedWidth, int requestedHeight);
public WebCamTexture(string deviceName, int requestedWidth, int requestedHeight, int requestedFPS);

Parameters

deviceNameThe name of the video input device to be used.
requestedWidthThe requested width of the texture.
requestedHeightThe requested height of the texture.
requestedFPSThe requested frame rate of the texture.

Description

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.

Call Application.RequestUserAuthorization before creating a WebCamTexture.

Note: using webcam texture on Android requires a device running Honeycomb (Android 3.0) or later.

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.

Did you find this page useful? Please give it a rating: