Black Trigram (흑괘) - API Documentation - v0.2.10
    Preparing search index...

    Interface RenderingSystemInterface

    interface RenderingSystemInterface {
        addRenderable: (entityId: string, config: RenderableConfig) => void;
        app: Application;
        getDisplayObject: (
            entityId: string,
        ) => undefined | Container<ContainerChild>;
        removeRenderable: (entityId: string) => void;
        render: () => void;
        updateRenderable: (
            entityId: string,
            updates: Partial<RenderableConfig>,
        ) => void;
    }
    Index

    Properties

    addRenderable: (entityId: string, config: RenderableConfig) => void
    app: Application
    getDisplayObject: (entityId: string) => undefined | Container<ContainerChild>
    removeRenderable: (entityId: string) => void
    render: () => void
    updateRenderable: (entityId: string, updates: Partial<RenderableConfig>) => void