Strata - v1.4.10
    Preparing search index...

    Interface SpawnSystemEntity

    Base entity type that all game entities extend.

    interface GameEntity extends BaseEntity {
    position: { x: number; y: number; z: number };
    }
    interface SpawnSystemEntity {
        id?: string;
        isSpawned?: boolean;
        regionId?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id?: string

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

    isSpawned?: boolean
    regionId?: string