Home › Per Godot docs, a CUSTOM EDITOR plugin in Godot …
Per Godot docs, a CUSTOM EDITOR plugin in Godot is registered by which mechanism?
AA script extending EditorPlugin enabled in Project Settings
BAdding a .godot file with a hex signature in /addons/ dir
CRecompiling the engine source with a new C++ class added
DModifying the project.godot file by hand on each editor load
Answer & Solution
Correct answer: A. A script extending EditorPlugin enabled in Project Settings
Godot docs (Making plugins): place EditorPlugin script under res://addons/plugin_name/ with plugin.cfg, then enable in Project > Project Settings > Plugins.
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