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

ReflectionProbeClearFlags.SolidColor

提出更改建议

成功!

感谢你帮助我们提升 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读我们用户提出的每项建议更改,并在合适的地方进行更新。

关闭

提交失败

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

关闭

取消

描述

使用一种背景颜色清除。

其他资源:ReflectionProbe.clearFlags 属性。

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { void Start() { ReflectionProbe probe = GetComponent<ReflectionProbe>();

// Clear with background color (ignore any skyboxes) probe.clearFlags = UnityEngine.Rendering.ReflectionProbeClearFlags.SolidColor; } }