There is no spoon
UE3:OnlineNewsInterface (UT3)
From Unreal Wiki, The Unreal Engine Documentation Site
| Interface >> OnlineNewsInterface |
Contents |
- Package:
- Engine
- Known implementing classes:
- OnlineSubsystemGameSpy
- This interface in other games:
- UDK
| This is an auto-generated page and may need human attention. Please remove this tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
This interface provides functions for reading game specific news and announcements
[edit] Delegates
[edit] OnReadContentAnnouncementsCompleted
Delegate used in notifying the UI/game that the content announcements read operation completed
Parameters:
- bWasSuccessful - true if the read completed ok, false otherwise
[edit] OnReadGameNewsCompleted
Delegate used in notifying the UI/game that the news read operation completed
Parameters:
- bWasSuccessful - true if the read completed ok, false otherwise
[edit] Instance functions
[edit] AddReadContentAnnouncementsCompletedDelegate
Sets the delegate used to notify the gameplay code that content announcements reading has completed
Parameters:
- ReadContentAnnouncementsDelegate - the delegate to use for notifications
[edit] AddReadGameNewsCompletedDelegate
Sets the delegate used to notify the gameplay code that news reading has completed
Parameters:
- ReadGameNewsDelegate - the delegate to use for notifications
[edit] ClearReadContentAnnouncementsCompletedDelegate
Removes the specified delegate from the notification list
Parameters:
- ReadContentAnnouncementsDelegate - the delegate to use for notifications
[edit] ClearReadGameNewsCompletedDelegate
Removes the specified delegate from the notification list
Parameters:
- ReadGameNewsDelegate - the delegate to use for notifications
[edit] GetContentAnnouncements
Returns the game specific content announcements from the cache
Parameters:
- LocalUserNum - the local user the content announcements is being read for
Returns:
- an empty string if no data was read, otherwise the contents of the read
[edit] GetGameNews
Returns the game specific news from the cache
Parameters:
- LocalUserNum - the local user the news is being read for
Returns:
- an empty string if no news was read, otherwise the contents of the read
[edit] ReadContentAnnouncements
Reads the game specific content announcements from the online subsystem
Parameters:
- LocalUserNum - the local user the request is for
Returns:
- true if the async task was successfully started, false otherwise
[edit] ReadGameNews
Reads the game specific news from the online subsystem
Parameters:
- LocalUserNum - the local user the news is being read for
Returns:
- true if the async task was successfully started, false otherwise
