mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Created a NodeDock with signals and groups
This commit is contained in:
@@ -1244,7 +1244,19 @@ void Node::get_groups(List<GroupInfo> *p_groups) const {
|
||||
|
||||
}
|
||||
|
||||
bool Node::has_persistent_groups() const {
|
||||
|
||||
const StringName *K=NULL;
|
||||
|
||||
while ((K=data.grouped.next(K))) {
|
||||
|
||||
if (data.grouped[*K].persistent)
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
}
|
||||
void Node::_print_tree(const Node *p_node) {
|
||||
|
||||
print_line(String(p_node->get_path_to(this)));
|
||||
|
||||
Reference in New Issue
Block a user