OnText3DStreamIn: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Event|Client|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|OnText3DStreamIn(text3d)}} {{FuncParameters}} {{FuncParam|text3d|The text3d identifier which streamed..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Event|Client|1.0}} | {{Info|Event|Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|This event is called when a player streams in the text 3d label.}} | ||
{{FuncSyntax|OnText3DStreamIn(text3d)}} | {{FuncSyntax|OnText3DStreamIn(text3d)}} | ||
Line 9: | Line 9: | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
AddEvent("OnText3DStreamIn", function (text3d) | |||
AddPlayerChat("OH! You just streamed in a text 3d "..text3d..".") | |||
end) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
[[Template:ClientEvents]] |
Revision as of 15:09, 7 January 2020
Description
This event is called when a player streams in the text 3d label.
Syntax
OnText3DStreamIn(text3d)
Parameters
- text3d
The text3d identifier which streamed in.
Example
AddEvent("OnText3DStreamIn", function (text3d)
AddPlayerChat("OH! You just streamed in a text 3d "..text3d..".")
end)