summaryrefslogtreecommitdiffstats
path: root/scene/main/node.cpp
diff options
context:
space:
mode:
authorAndrea Catania <info@andreacatania.com>2018-07-25 16:48:18 +0200
committerAndrea Catania <info@andreacatania.com>2018-08-04 14:51:44 +0200
commitc1860fe88b8dfe58828a06cdebb305e4528c6444 (patch)
tree783adc1cf3a11a4799ca420406ba77d5390c883a /scene/main/node.cpp
parentb7e66188df12503e0d8559c4e08386c0d98c06ce (diff)
downloadredot-engine-c1860fe88b8dfe58828a06cdebb305e4528c6444.tar.gz
Fixed process priority
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)