Version: 2020.1
언어: 한국어

LightingWindowEnvironmentSection

class in UnityEditor

매뉴얼로 전환

설명

Base class for the Inspector that overrides the Environment section of the Lighting window.

using UnityEditor;
using UnityEditor.Rendering;
using UnityEngine;
using UnityEngine.Rendering;

[ScriptableRenderPipelineExtension(typeof(CustomSRPAsset))] class CustomEnvironmentSection : LightingWindowEnvironmentSection { public override void OnInspectorGUI() { // The following will be displayed instead of the Environment section in the LightingWindow EditorGUILayout.LabelField("My Custom Environment Section !!"); } }

//Below is a custom empty render pipeline only here for explaining the filtering in ScriptableRenderPipelineExtension

class CustomSRP : RenderPipeline { protected override void Render(ScriptableRenderContext context, Camera[] cameras) { /* My custom rendering algorythme */} }

class CustomSRPAsset : RenderPipelineAsset { protected override RenderPipeline CreatePipeline() { return new CustomSRP(); } }

In this example, the Environment section of the Lighting window is overridden when the CustomSRP is in use.

Public 함수

OnDisableOnDisable is called when this Inspector override is not used anymore.
OnEnableOnEnable is called when this Inspector override is used.
OnInspectorGUIA callback that is called when drawing the Environment section in the Lighting window.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961