I love the smell of UnrealEd crashing in the morning. – tarquin
UE3:OnlineNewsInterface (UT3)
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 the {{autogenerated}} 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
Delegates[edit]
OnReadContentAnnouncementsCompleted[edit]
Delegate used in notifying the UI/game that the content announcements read operation completed
Parameters:
- bWasSuccessful - true if the read completed ok, false otherwise
OnReadGameNewsCompleted[edit]
Delegate used in notifying the UI/game that the news read operation completed
Parameters:
- bWasSuccessful - true if the read completed ok, false otherwise
Instance functions[edit]
AddReadContentAnnouncementsCompletedDelegate[edit]
Sets the delegate used to notify the gameplay code that content announcements reading has completed
Parameters:
- ReadContentAnnouncementsDelegate - the delegate to use for notifications
AddReadGameNewsCompletedDelegate[edit]
Sets the delegate used to notify the gameplay code that news reading has completed
Parameters:
- ReadGameNewsDelegate - the delegate to use for notifications
ClearReadContentAnnouncementsCompletedDelegate[edit]
Removes the specified delegate from the notification list
Parameters:
- ReadContentAnnouncementsDelegate - the delegate to use for notifications
ClearReadGameNewsCompletedDelegate[edit]
Removes the specified delegate from the notification list
Parameters:
- ReadGameNewsDelegate - the delegate to use for notifications
GetContentAnnouncements[edit]
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
GetGameNews[edit]
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
ReadContentAnnouncements[edit]
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
ReadGameNews[edit]
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