mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-02 20:22:05 +00:00
Add proper type to most public API uses of Array
This commit is contained in:
@@ -1066,9 +1066,9 @@ Array EditorSelection::_get_transformable_selected_nodes() {
|
||||
return ret;
|
||||
}
|
||||
|
||||
Array EditorSelection::get_selected_nodes() {
|
||||
TypedArray<Node> EditorSelection::get_selected_nodes() {
|
||||
|
||||
Array ret;
|
||||
TypedArray<Node> ret;
|
||||
|
||||
for (Map<Node *, Object *>::Element *E = selection.front(); E; E = E->next()) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user