NativeArray<TransformWriteTween> A world-owned view of the existing Transform Write Tweens that are handled per-frame. Contents are invalidated by the next simulation step.
Gets all the existing Transform Write Tweens that are handled per-frame.
If the PhysicsWorld.transformTweenMode is PhysicsWorld.TransformTweenMode.Sequential then the tweens are sorted into ascending transform depth allowing writing to the Transform hierarchy by simply iterating the tweens .
If the PhysicsWorld.transformTweenMode is PhysicsWorld.TransformTweenMode.Sequential then the tweens are unsorted as a Jobs.TransformAccessArray is used to write them.
See TransformWriteTween and TransformWriteMode.
The returned Collections.NativeArray_1 aliases the per-frame internal buffer owned by the world; it does not own its memory (so disposing it does nothing).
The contents are only valid until the next simulation step runs, after which the buffer may be reused or destroyed.
If a longer-lived copy is required, copy the contents into a caller-owned Collections.NativeArray_1.