You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Refactored variant setters/getters
-Discern between named, indexed and keyed -Get direct access to functions for typed GDScript and GDNative bindings -Small changes to some classes in order to work with the new setget binder
This commit is contained in:
@@ -3751,7 +3751,8 @@ PropertyInfo AnimationTrackEditor::_find_hint_for_track(int p_idx, NodePath &r_b
|
||||
}
|
||||
|
||||
for (int i = 0; i < leftover_path.size() - 1; i++) {
|
||||
property_info_base = property_info_base.get_named(leftover_path[i]);
|
||||
bool valid;
|
||||
property_info_base = property_info_base.get_named(leftover_path[i], valid);
|
||||
}
|
||||
|
||||
List<PropertyInfo> pinfo;
|
||||
|
||||
Reference in New Issue
Block a user