DestroyText3D: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 11: Line 11:


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua">
if IsValidText(text3d) then
    DestroyText3D(text3d)
end
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
* [[CreateText3D]]
{{Text3DFunctions}}

Latest revision as of 14:03, 10 November 2021

DestroyText3D

Type: Function
Context: Server
Introduced: v1.0

Description

Destroys the specified 3D text label.

Syntax

DestroyText3D(text3d)

Parameters

  • text3d
    The 3D text label identifier

Return Value

  • Returns true on success.

Example

if IsValidText(text3d) then
    DestroyText3D(text3d)
end

See also