[UseDefaultEditor]
Support Types
Type
Description
Examples
[UseDefaultEditor]
public class MyComponent : MonoBehaviour
{
// This component will use the default Unity Inspector
// even if Apex is enabled for the project.
}
public class AnotherComponent : MonoBehaviour
{
[UseDefaultEditor]
public SomeClass myField;
}Last updated