版本:Unity 6 (6000.0)
语言英语
  • C#

WebCamTexture.videoRotationAngle

建议更改

成功!

感谢您帮助我们改善 Unity 文档的质量。虽然我们无法接受所有提交建议,但我们确实阅读用户提出的每项建议的改动意见,并会在适用情况下进行更新。

关闭

提交失败

由于某些原因,您建议的更改无法提交。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档质量。

关闭

取消

public int videoRotationAngle;

描述

返回顺时针角度(以度为单位),可用于旋转多边形,以便以正确的方向显示相机内容。

在创建 WebCamTexture 之前调用 Application.RequestUserAuthorization

// Starts a camera and assigns the texture to the current renderer.
// Updates polygon's orientation according to camera's given angle.
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public WebCamTexture webcamTexture; public Quaternion baseRotation; void Start() { webcamTexture = new WebCamTexture(); Renderer renderer = GetComponent<Renderer>(); renderer.material.mainTexture = webcamTexture; baseRotation = transform.rotation; webcamTexture.Play(); }

void Update() { transform.rotation = baseRotation * Quaternion.AngleAxis(webcamTexture.videoRotationAngle, Vector3.up); } }