Legacy Documentation: Version 2017.1 (Go to current version)
ShaderLab: Fallback
ShaderLab: other commands
Other Versions

ShaderLab: CustomEditor

A CustomEditor can be defined for your shader. When you do this Unity will look for a class that extends ShaderGUI with this name. If one is found any material that uses this shader will use this ShaderGUI. See Custom Shader GUI for examples.

Syntax

    CustomEditor "name"

Use the ShaderGUI with a given name.

Details

A CustomEditor statement effects all materials that use this Shader

Example

Shader "example" {
    // properties and subshaders here...
    CustomEditor "MyCustomEditor"
}
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答