Loading Bar
Here is an example of Aty Scripts - UI Kit's loading bar system usage.
Loading Bar Usage Guide
Creating a Loading Bar
To create a loading bar, use the following function:
Loading Bar Parameters
Title
"Purchasing"
The title of the loading bar, displayed as a notification. Type:string
Duration
7000
The duration (in milliseconds) for the loading bar to complete. Type:integer
Animation Dictionary (dict
)
dict
)"mini@sprunk"
The animation dictionary to be used during the loading sequence. Type:string
Animation Name (anim
)
anim
)"plyr_buy_drink_pt1"
The specific animation to play from the animation dictionary. Type:string
Flags
1
Animation behavior flags, controlling playback settings. Type:integer
Prop
"p_amb_coffeecup_01"
The name of the prop (object) to attach to the character during the animation. Type:string
Bone
28422
The bone index to which the prop is attached. Type:integer
Offset
vector3(0.0, 0.0, 0.0)
The position offset for the prop relative to the specified bone. Type:vector3
Rotation (rot
)
rot
)vector3(0.0, 0.0, 0.0)
The rotation offset for the prop relative to the specified bone. Type:vector3
Disable Controls
false
Specifies whether player controls should be disabled during the loading bar sequence. Type:boolean
Cancel
true
Determines whether the player can cancel the loading bar. Type:boolean
Callback Function
The callback function handles the outcome of the loading bar:
"ok"
: Triggered when the loading bar completes successfully."cancelled"
: Triggered when the loading bar is canceled.Other: Triggered when the loading bar fails or is already active.
Last updated