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

    Interface IEntitiesQueryDescriptor

    interface IEntitiesQueryDescriptor {
        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;
        sort(
            comparator: TComparator<IEntity>,
        ): IQueryDescriptor<TExistenceQuery<TObjectProto>, IEntity>;
        toArray(): IEntity[];
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    Methods