I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX
UE3:UIDataProvider_OnlineProfileSettings (UDK)
Object >> UIRoot >> UIDataProvider >> UIDataProvider_OnlinePlayerDataBase >> UIDataProvider_OnlinePlayerStorage >> UIDataProvider_OnlineProfileSettings |
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
This class is responsible for mapping properties in an OnlineGameSettings object to something that the UI system can consume.
Default values[edit]
Property | Value |
---|---|
ProviderName | 'ProfileData' |
Instance functions[edit]
AddReadCompleteDelegate[edit]
Overrides: UIDataProvider_OnlinePlayerStorage.AddReadCompleteDelegate
Sets the delegate used to notify the gameplay code that the last read request has completed
Parameters:
- PlayerInterface - is the OnlinePlayerInterface used
- LocalUserNum - which user to watch for read complete notifications
ClearReadCompleteDelegate[edit]
Overrides: UIDataProvider_OnlinePlayerStorage.ClearReadCompleteDelegate
Clears the delegate used to notify the gameplay code that the last read request has completed
Parameters:
- PlayerInterface - is the OnlinePlayerInterface used
- LocalUserNum - which user to stop watching for read complete notifications
ReadData[edit]
Overrides: UIDataProvider_OnlinePlayerStorage.ReadData
Reads the data
Parameters:
- PlayerInterface - is the OnlinePlayerInterface used
- LocalUserNum - the user that we are reading the data for
- PlayerStorage - the object to copy the results to and contains the list of items to read
Returns:
- true if the call succeeds, false otherwise
WriteData[edit]
Overrides: UIDataProvider_OnlinePlayerStorage.WriteData
Writes the online data for a given local user to the online data store
Parameters:
- PlayerInterface - is the OnlinePlayerInterface used
- LocalUserNum - the user that we are writing the data for
- PlayerStorage - the object that contains the list of items to write
Returns:
- true if the call succeeds, false otherwise