TextDisplayRemoveText: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Changed argument order) |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server function}} | {{Server function}} | ||
This function removes a [[textitem]] from a [[textdisplay]]. This stops any observers of the [[textdisplay]] from being able to see the [[textitem]]. | |||
This function | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
void textDisplayRemoveText ( textitem itemToRemove | void textDisplayRemoveText ( textdisplay displayToRemoveFrom, textitem itemToRemove ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required Arguments=== | ===Required Arguments=== | ||
* ''' | * '''displayToRemoveFrom''': The [[textdisplay]] to remove the [[textitem]] from. | ||
* ''' | * '''itemToRemove''': The [[textitem]] to remove from the display. | ||
==Example== | ==Example== | ||
This example creates a text display and adds a "Hello World" text item to it. It then removes that text item 5 seconds later. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- Create a text display. | -- Create a text display. | ||
myTextDisplay = textCreateDisplay () | myTextDisplay = textCreateDisplay ( ) | ||
-- Add a player as an observer, i.e. this player will see everything added to this display | -- Add a player as an observer, i.e. this player will see everything added to this display | ||
textDisplayAddObserver ( myTextDisplay, aPlayer ) | textDisplayAddObserver ( myTextDisplay, aPlayer ) | ||
Line 24: | Line 24: | ||
textDisplayAddText ( myTextDisplay, myTextItem ) | textDisplayAddText ( myTextDisplay, myTextItem ) | ||
-- Remove the text item from the display | -- Remove the text item from the display | ||
textDisplayRemoveText | setTimer ( textDisplayRemoveText, 5000, 1, myTestDispay, myTextItem ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Text | {{Text functions}} |
Latest revision as of 08:20, 6 July 2016
This function removes a textitem from a textdisplay. This stops any observers of the textdisplay from being able to see the textitem.
Syntax
void textDisplayRemoveText ( textdisplay displayToRemoveFrom, textitem itemToRemove )
Required Arguments
- displayToRemoveFrom: The textdisplay to remove the textitem from.
- itemToRemove: The textitem to remove from the display.
Example
This example creates a text display and adds a "Hello World" text item to it. It then removes that text item 5 seconds later.
-- Create a text display. myTextDisplay = textCreateDisplay ( ) -- Add a player as an observer, i.e. this player will see everything added to this display textDisplayAddObserver ( myTextDisplay, aPlayer ) -- Create a new text item with the text 'Hello World' and a priority of 'low' and colored red. myTextItem = textCreateTextItem ( "Hello World", 0.5, 0.5, "low", 255, 0, 0, 0, 1.0 ) -- Add the newly created text item to the display textDisplayAddText ( myTextDisplay, myTextItem ) -- Remove the text item from the display setTimer ( textDisplayRemoveText, 5000, 1, myTestDispay, myTextItem )
See Also
- textCreateDisplay
- textCreateTextItem
- textDestroyDisplay
- textDestroyTextItem
- textDisplayAddObserver
- textDisplayAddText
- textDisplayGetObservers
- textDisplayIsObserver
- textDisplayRemoveObserver
- textDisplayRemoveText
- textItemGetColor
- textItemGetPosition
- textItemGetPriority
- textItemGetScale
- textItemGetText
- textItemSetColor
- textItemSetPosition
- textItemSetPriority
- textItemSetScale
- textItemSetText