Strata - v1.4.10
    Preparing search index...

    Interface ConnectionSystemEntity

    Base entity type that all game entities extend.

    interface GameEntity extends BaseEntity {
    position: { x: number; y: number; z: number };
    }
    interface ConnectionSystemEntity {
        id?: string;
        isPlayer?: boolean;
        transform?: { position: Vector3 };
    }

    Hierarchy (View Summary)

    Index

    Properties

    id?: string

    Unique identifier for the entity. Automatically generated if not provided.

    isPlayer?: boolean
    transform?: { position: Vector3 }