Context Menu
Here is an example of Aty Scripts - UI Kit's context menu system usage.
Context Menu Usage Guide
Creating a Context Menu
To create a context menu, use the following function:
Context Menu Parameters
Name
"test_context"
A unique identifier for the context menu. Type:string
Position
"top-right"
Determines where the context menu appears on the screen. Options:"top-right"
,"top-left"
,"bottom-right"
,"bottom-left", "bottom"
,"top"
,"left"
,"right"
,"center"
Type:string
Title
"Elevator"
The title displayed at the top of the context menu. Type:string
Subtitle
"Use the elevator"
A brief description displayed below the title. Type:string
Selections
Floors (Submenu Example)
Title:
"Floors"
Description:
"Select the floor you want to go."
Icon:
"fa-solid fa-elevator"
Action:
"submenu"
Submenus
Submenu Selection
Title:
"Floor 1"
Description:
"Go to the first floor."
Icon:
"fas fa-arrow-up"
Action:
"useElevator"
Args:
"first"
Back
Title:
"Back"
Description:
"Go back to the main menu."
Icon:
"fa-solid fa-caret-left"
Action:
"back"
Close Menu
Title:
"Close Menu"
Description:
"Test Description"
Icon:
"fa-solid fa-circle-xmark"
Action:
"close"
Icon References
Icons follow Font Awesome classes. Ensure the appropriate library is included in your project for the icons to render correctly.
This structure provides a detailed context menu with nested submenus, actions, and custom configurations for user interaction.
Open Context Menu
Last updated