Vertex Docs

FancyWindow

Description: FancyWindow is an enhanced window class built on top of BaseWindow. It provides a more advanced and visually polished window system suitable for editors, tools, and modern in-game interfaces. All window types in VertexEngine ultimately inherit from the generic window system.

Features

Example: Usage

from VertexEngine import VertexUI

window = VertexUI.FancyWindow(
    title="Settings",
    width=600,
    height=400
)

Returns

A FancyWindow instance that can be used as a container for UI elements such as buttons, sliders, and panels.

Notes