TextDisplayRemoveObserver
Jump to navigation
Jump to search
Description
This function removes a player observer of a textdisplay. This stops the player from being able to see textitems that the textdisplay contains.
Syntax
void textDisplayRemoveObserver ( textdisplay textDisplay, player playerToRemove )
Required Arguments
- textDisplay: The textdisplay to add the player to as an observer.
- playerToRemove : The player that should be removed from the textdisplay.
Example
textDisplay = textCreateDisplay () textDisplayAddObserver ( textDisplay, player ) textDisplayRemoveObserver ( textDisplay, player ) textItem = textCreateTextItem ( "Hello World", 0.5, 0.5, "low", 255, 0, 0, 0, 1.0 ) textDisplayAddText ( textDisplay, textItem )