Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

WebCamTexture.videoRotationAngle

Switch to Manual
public var videoRotationAngle: int;

Description

Returns an clockwise angle, which can be used to rotate a polygon so camera contents are shown in correct orientation.

Note that 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.

#pragma strict
// Starts a camera and assigns the texture to the current renderer.
// Updates polygon's orientation according to camera's given angle.
public var webcamTexture;
public var baseRotation;
function Start() {
	webcamTexture = new WebCamTexture();
	var renderer = GetComponent.<Renderer>();
	renderer.material.mainTexture = webcamTexture;
	baseRotation = transform.rotation;
	webcamTexture.Play();
}
function Update() {
	transform.rotation = baseRotation * Quaternion.AngleAxis(webcamTexture.videoRotationAngle, Vector3.up);
}