ecspresso
    Preparing search index...

    Interface CoroutineWorld

    Structural interface for ECS methods used by cancelCoroutine.

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

    Properties

    Methods

    Properties

    commands: { removeComponent(entityId: number, componentName: string): void }

    Methods

    • Parameters

      • entityId: number
      • componentName: string

      Returns unknown