Defines an Object3D matrix object

interface Object3DTransformMatrix {
    matrix: Mat4;
    shouldUpdate: boolean;
    onUpdate: (() => void);
}

Properties

matrix: Mat4

The matrix used

shouldUpdate: boolean

Whether we should update the matrix

onUpdate: (() => void)

Function to update our matrix

Type declaration

    • (): void
    • Function to update our matrix

      Returns void