You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +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:
@@ -304,7 +304,7 @@ void OptionButton::_bind_methods() {
|
||||
ObjectTypeDB::bind_method(_MD("get_item_count"),&OptionButton::get_item_count);
|
||||
ObjectTypeDB::bind_method(_MD("add_separator"),&OptionButton::add_separator);
|
||||
ObjectTypeDB::bind_method(_MD("clear"),&OptionButton::clear);
|
||||
ObjectTypeDB::bind_method(_MD("select"),&OptionButton::select);
|
||||
ObjectTypeDB::bind_method(_MD("select","idx"),&OptionButton::select);
|
||||
ObjectTypeDB::bind_method(_MD("get_selected"),&OptionButton::get_selected);
|
||||
ObjectTypeDB::bind_method(_MD("get_selected_ID"),&OptionButton::get_selected_ID);
|
||||
ObjectTypeDB::bind_method(_MD("get_selected_metadata"),&OptionButton::get_selected_metadata);
|
||||
|
||||
Reference in New Issue
Block a user