Difference between revisions of "X360AchievementClass"
Jump to navigation
Jump to search
(Created page with "===Description=== Xbox 360 achievement description. ===Variables=== Cred Cred received for earning this achievement. X360Achievement.Cred public uint Cred; Description Cred...") |
|||
(7 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
===Variables=== | ===Variables=== | ||
− | Cred Cred received for earning this achievement. | + | {| class="wikitable" |
− | + | |- | |
− | + | ! Variable !! String !! Description !! Type | |
− | public uint Cred; | + | |- |
− | Description | + | | Cred || X360Achievement.Cred || Cred received for earning this achievement. || public uint Cred; |
− | + | |- | |
− | + | | Description || X360Achievement.Description || Localized description of the achievement. || public string Description; | |
− | + | |- | |
− | Description Localized description of the achievement. | + | | Id || X360Achievement.Id || Achievement identifier (unique only within the title). || public uint Id; |
− | Id Achievement identifier (unique only within the title). | + | |- |
− | Index Index in the enumerated list. | + | | Index || X360Achievement.Index || Index in the enumerated list. || public uint Index; |
− | Label Localized label for achievement. | + | |- |
− | Picture Returns a 64x64 RGBA texture. | + | | Label || X360Achievement.Label || Localized label for achievement. || public string Label; |
− | ShowUnachieved Indicates whether or not the details of the achievement should be displayed to the user before it has been awarded. | + | |- |
− | Type Achievement type. | + | | Picture || X360Achievement.Picture || Returns a 64x64 RGBA texture. || public Texture2D Picture; |
− | Unachieved Localized description of the steps necessary to win the achievement. | + | |- |
+ | | ShowUnachieved || X360Achievement.ShowUnachieved || Indicates whether or not the details of the achievement should be displayed to the user before it has been awarded. || public bool ShowUnachieved; | ||
+ | |- | ||
+ | | Type || X360Achievement.Type || Achievement type. || public X360AchievementType Type; | ||
+ | |- | ||
+ | | Unachieved || X360Achievement.Unachieved || Localized description of the steps necessary to win the achievement. || public string Unachieved; | ||
+ | |} |
Latest revision as of 04:48, 8 June 2020
Description
Xbox 360 achievement description.
Variables
Variable | String | Description | Type |
---|---|---|---|
Cred | X360Achievement.Cred | Cred received for earning this achievement. | public uint Cred; |
Description | X360Achievement.Description | Localized description of the achievement. | public string Description; |
Id | X360Achievement.Id | Achievement identifier (unique only within the title). | public uint Id; |
Index | X360Achievement.Index | Index in the enumerated list. | public uint Index; |
Label | X360Achievement.Label | Localized label for achievement. | public string Label; |
Picture | X360Achievement.Picture | Returns a 64x64 RGBA texture. | public Texture2D Picture; |
ShowUnachieved | X360Achievement.ShowUnachieved | Indicates whether or not the details of the achievement should be displayed to the user before it has been awarded. | public bool ShowUnachieved; |
Type | X360Achievement.Type | Achievement type. | public X360AchievementType Type; |
Unachieved | X360Achievement.Unachieved | Localized description of the steps necessary to win the achievement. | public string Unachieved; |