Merge pull request #2556 from volzhs/fix_miss_bind_findnode
fix miss bind for Node::find_node
This commit is contained in:
commit
f11fdb611e
1 changed files with 1 additions and 1 deletions
|
@ -1993,7 +1993,7 @@ void Node::_bind_methods() {
|
|||
ObjectTypeDB::bind_method(_MD("has_node","path"),&Node::has_node);
|
||||
ObjectTypeDB::bind_method(_MD("get_node:Node","path"),&Node::get_node);
|
||||
ObjectTypeDB::bind_method(_MD("get_parent:Parent"),&Node::get_parent);
|
||||
ObjectTypeDB::bind_method(_MD("find_node:Node","mask","recursive","owned"),&Node::get_node,DEFVAL(true),DEFVAL(true));
|
||||
ObjectTypeDB::bind_method(_MD("find_node:Node","mask","recursive","owned"),&Node::find_node,DEFVAL(true),DEFVAL(true));
|
||||
ObjectTypeDB::bind_method(_MD("has_node_and_resource","path"),&Node::has_node_and_resource);
|
||||
ObjectTypeDB::bind_method(_MD("get_node_and_resource","path"),&Node::_get_node_and_resource);
|
||||
|
||||
|
|
Loading…
Reference in a new issue