You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-23 15:16:17 +00:00
Synchronize parameter names in definition and declaration
Fixes #10244.
This commit is contained in:
committed by
Rémi Verschelde
parent
b1ecaaa22b
commit
00f6c85928
@@ -82,9 +82,9 @@ bool Skeleton::_set(const StringName &p_path, const Variant &p_value) {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Skeleton::_get(const StringName &p_name, Variant &r_ret) const {
|
||||
bool Skeleton::_get(const StringName &p_path, Variant &r_ret) const {
|
||||
|
||||
String path = p_name;
|
||||
String path = p_path;
|
||||
|
||||
if (!path.begins_with("bones/"))
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user