Struct OnlineAchievement
Online platform achievement description.
Assembly: FlaxEngine.dll
File: Engine/Online/IOnlinePlatform.h
Syntax
public struct OnlineAchievement
Fields
Description
Identifier
Unique achievement identifier. Specific for a certain online platform.
Declaration
public String Identifier
Field Value
String
|
IsHidden
True if achievement is hidden from user (eg. can see it once it's unlocked).
Declaration
public bool IsHidden = false
Field Value
bool
|
Name
Progress
Achievement unlock percentage progress (normalized to 0-100 range).
Declaration
public float Progress = 0.0f
Field Value
float
|
Title
UnlockTime
Date and time at which player unlocked the achievement.
Declaration
public DateTime UnlockTime = DateTime::MinValue()
Field Value
DateTime
|