SProfile
Index
Functions Index
| Function Name |
|---|
void Authorize (Closure onAuthorized=null, Closure onRejected=null) |
void LoadProfile (Action< SUserProfile > onFinished) |
Properties Index
| Property Name |
|---|
SUserProfile ActivePlayerProfile get |
Functions
Authorize
void Authorize (Closure onAuthorized=null, Closure onRejected=null)
void Authorize (Action onAuthorized=null, Action onRejected=null)
Requests access to profile functions, must be called prior to attempting to access profile. As soon as the player has accepted the request, the Authorized attribute will be 'true'.
| Parameter | Type | Description |
|---|---|---|
- Lua
Space.Profile.Authorize()
--or
Space.Profile.Authorize(AnOnAuthorizeFunction)
--or
Space.Profile.Authorize(AnOnAuthorizeFunction, AnOnRejectedFuncton)
LoadProfile
void LoadProfile (Closure onFinished)
Load the profile of player
| Parameter | Type | Description |
|---|---|---|
| onFinished | Callback Function | onFinished(SUserProfile) is called once profile is loaded |
- Lua
function onFinished(SUserProfile)
--
end
Space.Profile.LoadProfile(onFinished)
Properties
ActivePlayerProfile
SUserProfile ActivePlayerProfile get
Property Description
- Lua
Space.Profile.ActivePlayerProfile