sej
    Preparing search index...

    Type Alias ExampleFactorParams

    Parameters for the ExampleFactor. THis allows you to customize the SejEngine instance by passing in your own classes.

    type ExampleFactorParams = {
        container: HTMLElement | null;
        Editor: typeof BasicEditor;
        KeyboardControls: typeof AbstractKeyboardControls;
        Renderer: typeof AbstractRenderer;
        Viewport: typeof AbstractViewport;
        ViewportControls: typeof AbstractViewportControls;
    }
    Index

    Properties

    container: HTMLElement | null

    The container where the SejEngine instance will be rendered.

    Editor: typeof BasicEditor

    Custom editor. See AbstractEditor for more information.

    KeyboardControls: typeof AbstractKeyboardControls

    Custom keyboard controls. See AbstractKeyboardControls for more information.

    Renderer: typeof AbstractRenderer

    Custom renderer. See AbstractRenderer for more information.

    Viewport: typeof AbstractViewport

    Custom viewport. See AbstractViewport for more information.

    ViewportControls: typeof AbstractViewportControls

    Custom viewport controls. See AbstractViewportControls for more information.