Description:
Added in the UI Update (1.0rc2), VertexUI
is the main user interface module of VertexEngine. It allows you to
create modern, customizable UI components such as fancy buttons,
text elements, and input fields for professional UI applications
and game editors.
from VertexEngine import VertexUI
button = VertexUI.FancyButton(
text="Play",
width=200,
height=60
)
VertexUI.[UIElement]() —
UIElement refers to any UI class provided by
VertexUI, such as FancyButton,
InputField, LegacyButton, and others.
UI elements with built-in rendering, interaction, and event handling.