mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
PoolVector is gone, replaced by Vector
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
This commit is contained in:
parent
fb8c93c10b
commit
3205a92ad8
406 changed files with 5314 additions and 8271 deletions
|
|
@ -115,7 +115,7 @@ Node *InstancePlaceholder::create_instance(bool p_replace, const Ref<PackedScene
|
|||
Dictionary InstancePlaceholder::get_stored_values(bool p_with_order) {
|
||||
|
||||
Dictionary ret;
|
||||
PoolStringArray order;
|
||||
PackedStringArray order;
|
||||
|
||||
for (List<PropSet>::Element *E = stored_values.front(); E; E = E->next()) {
|
||||
ret[E->get().name] = E->get().value;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue