JME - Application Documentation
    Preparing search index...

    Type Alias SerializedGroupTransform

    Plain-serialisable representation of a THREE.Group's world transform. Used in NetMessages instead of the raw THREE.Group to avoid circular reference errors when PeerJS JSON-serialises the payload.

    type SerializedGroupTransform = {
        id: string;
        position: { x: number; y: number; z: number };
        quaternion: { w: number; x: number; y: number; z: number };
    }
    Index

    Properties

    id: string
    position: { x: number; y: number; z: number }
    quaternion: { w: number; x: number; y: number; z: number }