From beb964c3c1fe2a528a3602b62cfd9191a263783b Mon Sep 17 00:00:00 2001 From: Chris Cranford Date: Thu, 1 Aug 2024 12:44:37 -0400 Subject: [PATCH] GH-630 Add link to GH issue --- src/script/nodes/variables/variable_get.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/script/nodes/variables/variable_get.cpp b/src/script/nodes/variables/variable_get.cpp index b7e5f066..415b0b68 100644 --- a/src/script/nodes/variables/variable_get.cpp +++ b/src/script/nodes/variables/variable_get.cpp @@ -62,6 +62,7 @@ bool OScriptNodeVariableGet::_get(const StringName& p_name, Variant& r_value) co } // todo: GodotCPP expects this to be done by the developer, Wrapped::get_bind doesn't do this + // see https://github.com/godotengine/godot-cpp/pull/1539 return OScriptNodeVariable::_get(p_name, r_value); } @@ -74,6 +75,7 @@ bool OScriptNodeVariableGet::_set(const StringName& p_name, const Variant& p_val } // todo: GodotCPP expects this to be done by the developer, Wrapped::set_bind doesn't do this + // see https://github.com/godotengine/godot-cpp/pull/1539 return OScriptNodeVariable::_set(p_name, p_value); }