You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-29 16:16:38 +00:00
Merge pull request #43398 from KoBeWi/add_an_array_to_another_array_but_with_a_method
Add append_array() method to Array class
This commit is contained in:
@@ -1356,6 +1356,7 @@ void Variant::_register_variant_methods() {
|
||||
bind_method(Array, push_back, sarray("value"), varray());
|
||||
bind_method(Array, push_front, sarray("value"), varray());
|
||||
bind_method(Array, append, sarray("value"), varray());
|
||||
bind_method(Array, append_array, sarray("array"), varray());
|
||||
bind_method(Array, resize, sarray("size"), varray());
|
||||
bind_method(Array, insert, sarray("position", "value"), varray());
|
||||
bind_method(Array, remove, sarray("position"), varray());
|
||||
|
||||
Reference in New Issue
Block a user