summaryrefslogtreecommitdiffstats
path: root/scene/main/node.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-08-04 10:45:14 -0300
committerGitHub <noreply@github.com>2018-08-04 10:45:14 -0300
commit7c712a25bc40c4d8e09867b61c941af06c6799f5 (patch)
tree05990f8e7c6880583466244c14aae07c88272530 /scene/main/node.cpp
parentc41397596dd829e44dab2c3fd8de9ce655238ee3 (diff)
parentc1860fe88b8dfe58828a06cdebb305e4528c6444 (diff)
downloadredot-engine-7c712a25bc40c4d8e09867b61c941af06c6799f5.tar.gz
Merge pull request #18699 from AndreaCatania/ik
Inverse kinematic
Diffstat (limited to 'scene/main/node.cpp')
-rw-r--r--scene/main/node.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 68de7b3a0a..6144240328 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -1415,11 +1415,6 @@ bool Node::is_greater_than(const Node *p_node) const {
return res;
}
-bool Node::has_priority_higher_than(const Node *p_node) const {
- ERR_FAIL_NULL_V(p_node, false);
- return data.process_priority > p_node->data.process_priority;
-}
-
void Node::get_owned_by(Node *p_by, List<Node *> *p_owned) {
if (data.owner == p_by)