Atlas Engine
API Referenceatlas

WindowConfiguration

Window geometry, presentation flags, and rendering configuration for windowed mode.

Module: atlas

Window geometry, presentation flags, and rendering configuration for windowed mode.

Declaration

export type WindowConfiguration = {
        title: string;
        width: number;
        height: number;
        renderScale: number;
        mouseCaptured: boolean;
        posX: number;
        posY: number;
        multisampling: boolean;
        editorControls: boolean;
        decorations: boolean;
        resizable: boolean;
        transparent: boolean;
        alwaysOnTop: boolean;
        opacity: number;
        aspectRatioX: number;
        aspectRatioY: number;
        ssaoScale: number;
    };

Properties

title

title: string;

width

width: number;

height

height: number;

renderScale

renderScale: number;

mouseCaptured

mouseCaptured: boolean;

posX

posX: number;

posY

posY: number;

multisampling

multisampling: boolean;

editorControls

editorControls: boolean;

decorations

decorations: boolean;

resizable

resizable: boolean;

transparent

transparent: boolean;

alwaysOnTop

alwaysOnTop: boolean;

opacity

opacity: number;

aspectRatioX

aspectRatioX: number;

aspectRatioY

aspectRatioY: number;

ssaoScale

ssaoScale: number;

On this page