diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-11-25 00:26:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-25 00:26:36 +0100 |
commit | ee4729cc07b904f92501d55d985ee2d325ba6e89 (patch) | |
tree | bd388b6570402fdde2732dd92217ee53981209cf /src/core/NodePath.cpp | |
parent | e72f4beec1b091edf6f16a0fe27d5ed13ca450c2 (diff) | |
parent | d8faa4ec76bc73ca17b8e5dd72220d16996423c3 (diff) | |
download | redot-cpp-ee4729cc07b904f92501d55d985ee2d325ba6e89.tar.gz |
Merge pull request #52 from BastiaanOlij/change_to_new_extensions
Update bindings to use new Api extensions and rename Rect3->AABB
Diffstat (limited to 'src/core/NodePath.cpp')
-rw-r--r-- | src/core/NodePath.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/NodePath.cpp b/src/core/NodePath.cpp index bdfa22e..25ce882 100644 --- a/src/core/NodePath.cpp +++ b/src/core/NodePath.cpp @@ -43,12 +43,6 @@ int NodePath::get_name_count() const return godot::api->godot_node_path_get_name_count(&_node_path); } -String NodePath::get_property() const -{ - godot_string str = godot::api->godot_node_path_get_property(&_node_path); - return *(String *) &str; -} - String NodePath::get_subname(const int idx) const { godot_string str = godot::api->godot_node_path_get_subname(&_node_path, idx); |