ecspresso
    Preparing search index...

    Structural interface for ECS methods used by cancelCoroutine.

    interface CoroutineWorld {
        commands: {
            removeComponent(entityId: number, componentName: string): void;
        };
        getComponent(entityId: number, componentName: string): unknown;
    }
    Index
    commands: { removeComponent(entityId: number, componentName: string): void }
    • Parameters

      • entityId: number
      • componentName: string

      Returns unknown