Skip to content

Commit

Permalink
GH-630 Add link to GH issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Aug 1, 2024
1 parent 214c184 commit beb964c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/script/nodes/variables/variable_get.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand All @@ -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);
}

Expand Down

0 comments on commit beb964c

Please sign in to comment.