UnityEditor.CustomPreviewAttribute.CustomPreviewAttribute C# (CSharp) Method

CustomPreviewAttribute() public method

Tells a DefaultPreview which class it's a preview for.

public CustomPreviewAttribute ( Type type ) : System
type System.Type The type you want to create a custom preview for.
return System
        public CustomPreviewAttribute(Type type)
        {
            this.m_Type = type;
        }
    }
CustomPreviewAttribute