You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +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:
@@ -1939,7 +1939,7 @@ void RichTextLabel::_bind_methods() {
|
||||
ObjectTypeDB::bind_method(_MD("push_meta","data"),&RichTextLabel::push_meta);
|
||||
ObjectTypeDB::bind_method(_MD("push_underline"),&RichTextLabel::push_underline);
|
||||
ObjectTypeDB::bind_method(_MD("push_table","columns"),&RichTextLabel::push_table);
|
||||
ObjectTypeDB::bind_method(_MD("set_table_column_expand","column","expand"),&RichTextLabel::set_table_column_expand);
|
||||
ObjectTypeDB::bind_method(_MD("set_table_column_expand","column","expand","ratio"),&RichTextLabel::set_table_column_expand);
|
||||
ObjectTypeDB::bind_method(_MD("push_cell"),&RichTextLabel::push_cell);
|
||||
ObjectTypeDB::bind_method(_MD("pop"),&RichTextLabel::pop);
|
||||
|
||||
@@ -1956,7 +1956,7 @@ void RichTextLabel::_bind_methods() {
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("get_v_scroll"),&RichTextLabel::get_v_scroll);
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("scroll_to_line"),&RichTextLabel::scroll_to_line);
|
||||
ObjectTypeDB::bind_method(_MD("scroll_to_line","line"),&RichTextLabel::scroll_to_line);
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("set_tab_size","spaces"),&RichTextLabel::set_tab_size);
|
||||
ObjectTypeDB::bind_method(_MD("get_tab_size"),&RichTextLabel::get_tab_size);
|
||||
|
||||
Reference in New Issue
Block a user