ShowData - hossimo/GMA3Plugins GitHub Wiki
ShowData() : object
Brief:
Returns the ShowData Object. This object can be used to traverse the hierarchy from the root of ShowData()
Paramiters:
Name | Description | Optional |
---|
Returns:
object: ShowData ...
Examples:
local profileName = ShowData().UserProfiles[1].name;
Echo("User 1 is called: %s", profileName) -- User 1 is called: Default
local wheelMode = ShowData().UserProfiles:Find("Default").wheelmode
Echo("The Default users wheelmode is %s", wheelMode) --The Default users wheelmode additive