ShaderLab syntax: CustomEditor

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

Syntax

CustomEditor "name"
Use the material editor with a given name.

Details

A CustomEditor statement effects all materials that use this Shader

Example

Shader "example" {
    // properties and subshaders here...
    CustomEditor "MyCustomEditor"
} 

Page last updated: 2013-01-22