sim-ecs - v0.6.5
    Preparing search index...

    Interface IEntitiesQuery

    interface IEntitiesQuery {
        descriptor: readonly TExistenceQueryParameter<TObjectProto>[];
        queryType: EQueryType;
        resultLength: number;
        execute(handler: (data: IEntity) => void | Promise<void>): Promise<void>;
        getFirst(): undefined | IEntity;
        iter(): IterableIterator<IEntity>;
        matchesEntity(entity: Readonly<IEntity>): boolean;
        toArray(): IEntity[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    descriptor: readonly TExistenceQueryParameter<TObjectProto>[]
    queryType: EQueryType
    resultLength: number

    Methods