|
@@ -36,7 +36,7 @@
|
|
|
#include "scene/debugger/scene_debugger.h"
|
|
|
|
|
|
bool EditorDebuggerRemoteObject::_set(const StringName &p_name, const Variant &p_value) {
|
|
|
- if (!editable || !prop_values.has(p_name) || String(p_name).begins_with("Constants/")) {
|
|
|
+ if (!prop_values.has(p_name) || String(p_name).begins_with("Constants/")) {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
@@ -91,7 +91,6 @@ void EditorDebuggerRemoteObject::_bind_methods() {
|
|
|
|
|
|
EditorDebuggerInspector::EditorDebuggerInspector() {
|
|
|
variables = memnew(EditorDebuggerRemoteObject);
|
|
|
- variables->editable = false;
|
|
|
}
|
|
|
|
|
|
EditorDebuggerInspector::~EditorDebuggerInspector() {
|