Neverlose
Ask or search…
K
Comment on page
🌃

panorama

Functions:

loadstring

panorama.loadstring(js_code: string[, panel: string]): any
Name
Type
Description
js_code
string
String containing JavaScript code
panel
string (panorama root panel)
Optional. Panel name

Accessing API's

panorama[api]: table
Name
Type
Description
api
string
API name, e.g. GameStateAPI
panorama[panel][api]: table
Name
Type
Description
panel
string (panorama root panel)
Panel name
api
string
API name, e.g. GameStateAPI
-- Access an API from the default root panel
local MyPersonaAPI = panorama.MyPersonaAPI
print(MyPersonaAPI.GetXuid())
-- Access an API from a specific root panel
local UiToolkitAPI = panorama.CSGOMainMenu.UiToolkitAPI
UiToolkitAPI.CloseAllVisiblePopups()
Last modified 1yr ago