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.
BaseWindowfrom VertexEngine import VertexUI
window = VertexUI.FancyWindow(
title="Settings",
width=600,
height=400
)
A FancyWindow instance that can be used as a container
for UI elements such as buttons, sliders, and panels.