Vertex Docs

LegacyInputField

Description: LegacyInputField is a simple text input component designed for minimalistic or old-school UI applications and game editors. It provides basic text entry functionality with minimal styling and is ideal for beginners or lightweight tools.

This component is a thin wrapper around Qt’s QLineEdit, offering direct access to familiar PyQt6 behavior without additional abstraction.

Status

Example: Usage

from VertexEngine.VertexWidgets.SimpleGUI import *

input_field = VertexUI.LegacyInputField()

Parameters

Returns

A LegacyInputField instance that stores and provides access to the entered text.

Notes