You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Both Array and Dictionary are always in shared mode (removed copy on write).
This commit is contained in:
@@ -2631,9 +2631,9 @@ public:
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
Array in_values(true);
|
||||
Array out_values(true);
|
||||
Array work_mem(true);
|
||||
Array in_values;
|
||||
Array out_values;
|
||||
Array work_mem;
|
||||
|
||||
in_values.resize(in_count);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user