| 2605 | } |
| 2606 | |
| 2607 | void Node::propagate_notification(int p_notification) { |
| 2608 | ERR_THREAD_GUARD |
| 2609 | data.blocked++; |
| 2610 | notification(p_notification); |
| 2611 | |
| 2612 | for (KeyValue<StringName, Node *> &K : data.children) { |
| 2613 | K.value->propagate_notification(p_notification); |
| 2614 | } |
| 2615 | data.blocked--; |
| 2616 | } |
| 2617 | |
| 2618 | void Node::propagate_call(const StringName &p_method, const Array &p_args, const bool p_parent_first) { |
| 2619 | ERR_THREAD_GUARD |
no test coverage detected