Allow contextual plugins to persist temporarily

This commit is contained in:
kobewi
2023-09-10 21:29:28 +02:00
parent fba341ce44
commit a6de7a8a3f
8 changed files with 151 additions and 18 deletions

View File

@@ -335,6 +335,10 @@ bool EditorPlugin::handles(Object *p_object) const {
return success;
}
bool EditorPlugin::can_auto_hide() const {
return true;
}
Dictionary EditorPlugin::get_state() const {
Dictionary state;
GDVIRTUAL_CALL(_get_state, state);