ecspresso
    Preparing search index...

    Interface TransformComponentTypes

    Component types provided by the transform plugin. Included automatically via .withPlugin(createTransformPlugin()).

    const ecs = ECSpresso.create()
    .withPlugin(createTransformPlugin())
    .withComponentTypes<{ sprite: Sprite; velocity: { x: number; y: number } }>()
    .build();
    interface TransformComponentTypes {
        localTransform: LocalTransform;
        worldTransform: WorldTransform;
    }

    Hierarchy (View Summary)

    Index

    Properties

    localTransform: LocalTransform
    worldTransform: WorldTransform