Are Packed Arrays thread safe?

Godot Version

4.5

Question

The documentation on thread-safe APIs states that you can read and write from arrays and dictionaries in multiple threads (as long as you don’t resize them). Does this apply to the packed array types as well?

It should be safe. You can always lock a mutex if things start to misbehave.