diff options
| author | reduz <reduzio@gmail.com> | 2020-11-06 22:29:22 -0300 |
|---|---|---|
| committer | reduz <reduzio@gmail.com> | 2020-11-07 15:16:15 -0300 |
| commit | 05de7ce6caf441f8b64dd60d1837835f10d06520 (patch) | |
| tree | 0c33e76f2effa5dcb48a7443ae888c20cbda1e44 /editor/animation_track_editor.cpp | |
| parent | 709964849fdc0c2cb34e5e851df71a66ee28ba1e (diff) | |
| download | redot-engine-05de7ce6caf441f8b64dd60d1837835f10d06520.tar.gz | |
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
Diffstat (limited to 'editor/animation_track_editor.cpp')
| -rw-r--r-- | editor/animation_track_editor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp index 52c984cbc0..5471a9907b 100644 --- a/editor/animation_track_editor.cpp +++ b/editor/animation_track_editor.cpp @@ -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; |
