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

    Interface ITransitionActions

    interface ITransitionActions {
        commands: Readonly<ICommands>;
        currentState: undefined | Readonly<IState>;
        eventBus: Readonly<IEventBus>;
        flushCommands(): Promise<void>;
        getEntities(
            query?: Readonly<IEntitiesQuery>,
        ): IterableIterator<IReadOnlyEntity>;
        getResource<T extends object>(type: TTypeProto<T>): T;
        hasResource<T extends object>(type: Readonly<T> | TTypeProto<T>): boolean;
        popState(): Promise<void>;
        pushState(NewState: Readonly<IIStateProto>): Promise<void>;
        save(options?: Readonly<ISerDeOptions<TSerializer>>): ISerialFormat;
    }

    Hierarchy (View Summary)

    Index

    Properties

    commands: Readonly<ICommands>
    currentState: undefined | Readonly<IState>
    eventBus: Readonly<IEventBus>

    Methods