A "box" that stores a Matrix4x4 object across multiple frames.
Normally, matrices are temporary objects that can only be safely used within a single frame. When you need a matrix value to persist across multiple frames, you can call Matrix4x4Box.store() to store the matrix in a Matrix4x4Box, and Matrix4x4Box.unbox() to retrieve the stored values.
For more information, see Object Lifetimes and Userdata Binding.