mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Add missing argument names in GDScript bindings
All classes were reviewed apart from VisualServer for which no argument name is documented at all. While doing this review, I found quite a few bugs that were fixed either in earlier commits or this one (mostly documentation bugs though, i.e. some arguments were listed at the wrong place).
This commit is contained in:
parent
fe46b2ac0c
commit
d4993b74fc
42 changed files with 234 additions and 236 deletions
|
|
@ -1586,7 +1586,7 @@ void SceneTree::_bind_methods() {
|
|||
ObjectTypeDB::bind_method(_MD("notify_group","call_flags","group","notification"),&SceneTree::notify_group);
|
||||
ObjectTypeDB::bind_method(_MD("set_group","call_flags","group","property","value"),&SceneTree::set_group);
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("get_nodes_in_group"),&SceneTree::_get_nodes_in_group);
|
||||
ObjectTypeDB::bind_method(_MD("get_nodes_in_group","group"),&SceneTree::_get_nodes_in_group);
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("get_root:Viewport"),&SceneTree::get_root);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue