Home › Per Unity Editor docs, CUSTOM INSPECTORS are imp…
Per Unity Editor docs, CUSTOM INSPECTORS are implemented by overriding which Editor class method?
AAwake() with [SerializeField] attributes always
BOnInspectorGUI() in a class extending Editor
CUpdate() in a MonoBehaviour as usual
DStart() in a runtime-only Behaviour
Answer & Solution
Correct answer: B. OnInspectorGUI() in a class extending Editor
Unity Manual (Custom Editors): class CustomFoo : Editor; OnInspectorGUI() draws controls (EditorGUILayout). Tagged [CustomEditor(typeof(Foo))].
Related questions
Per Godot docs (TOOL scripts), prefixing a GDScript file with @tool causes which behaviourPer Visual Studio + JetBrains Rider integration with Unity, the EDITORATTACH protocol thatPer Unity Asset Store + Unreal Marketplace guidelines, a TOOL author's INSPECTOR should haPer Unity DOTS / Burst docs, a CUSTOM INSPECTOR using UI TOOLKIT (vs IMGUI) is preferred fPer Unreal docs (UPROPERTY + UFUNCTION), the UNREAL HEADER TOOL parses macros at build timPer Houdini docs, a DIGITAL ASSET (HDA) lets tools authors do which?Per Blender Python (bpy) docs, the bpy module structure groups data in which sub-namespacePer Unity Editor docs, the SERIALIZED OBJECT API is preferred over direct field access in