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

Camera.CopyFrom

建议更改

成功!

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

关闭

提交失败

由于某些原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册

声明

public void CopyFrom(Camera other);

参数

other 将相机设置复制到另一个相机。

描述

使此相机的设置与另一个相机匹配。

这将从另一个相机复制所有相机的变量(视野、清除标志、剔除遮罩等)。它还将设置此相机的变换以匹配另一个相机,以及此相机的层以匹配另一个相机的层。

如果您希望一个相机在执行自定义渲染效果时与另一个相机的设置匹配,这将非常有用。例如,当使用 RenderWithShader 时。

// Two cameras.  One based on the Main Camera and the other on a new camera that takes over.

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { public Camera cam;

void Start() { // Set the current camera's settings from the main Scene camera cam.CopyFrom(Camera.main); } }