Skip to content

ShowData

Anthony Headley edited this page Apr 19, 2020 · 2 revisions

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
Clone this wiki locally