diff options
| author | Rémi Verschelde | 2017-11-21 22:44:14 +0100 |
|---|---|---|
| committer | GitHub | 2017-11-21 22:44:14 +0100 |
| commit | 613d374bc571929d601af1eab17079a639fe576f (patch) | |
| tree | 657d86e92254bb1aa8a9af0cddee5f74fdf50493 /modules/gdnative/include | |
| parent | 08e6590fd625bc3b592b7398ec2825f3758ab6e8 (diff) | |
| parent | 0cf9597758f3af3afc951d0bf02dee1aeb9a6daf (diff) | |
| download | godot-613d374bc571929d601af1eab17079a639fe576f.tar.gz godot-613d374bc571929d601af1eab17079a639fe576f.tar.zst godot-613d374bc571929d601af1eab17079a639fe576f.zip | |
Merge pull request #12284 from bojidar-bg/allow-subproperty-set
Allow for getting/setting "dotted" properties of objects
Diffstat (limited to 'modules/gdnative/include')
| -rw-r--r-- | modules/gdnative/include/gdnative/node_path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/gdnative/node_path.h b/modules/gdnative/include/gdnative/node_path.h index 42446175d..b5a59fd32 100644 --- a/modules/gdnative/include/gdnative/node_path.h +++ b/modules/gdnative/include/gdnative/node_path.h @@ -73,7 +73,7 @@ godot_int GDAPI godot_node_path_get_subname_count(const godot_node_path *p_self) godot_string GDAPI godot_node_path_get_subname(const godot_node_path *p_self, const godot_int p_idx); -godot_string GDAPI godot_node_path_get_property(const godot_node_path *p_self); +godot_string GDAPI godot_node_path_get_concatenated_subnames(const godot_node_path *p_self); godot_bool GDAPI godot_node_path_is_empty(const godot_node_path *p_self); |
