GetAllText3D: Difference between revisions

From Onset Developer Wiki
No edit summary
 
Line 20: Line 20:


{{RelatedFunctions}}
{{RelatedFunctions}}
*[[SetText3DDimension]]
{{Text3DFunctions}}
*[[GetText3DDimension]]
*[[SetText3DPropertyValue]]
*[[GetText3DPropertyValue]]
*[[GetText3DCount]]
*[[GetAllText3D]]
*[[CreateText3D]]
*[[DestroyText3D]]
*[[IsValidText3D]]
*[[SetText3DAttached]]
*[[SetText3DVisibility]]
*[[SetText3DText]]

Latest revision as of 14:03, 10 November 2021

GetAllText3D

Type: Function
Context: Server
Introduced: v1.0

Description

Get all text 3D on the server. Useful for loops.

Syntax

GetAllText3D()

Parameters

  • This function has no parameters.

Return Value

  • Returns a table of all text 3D.

Example

function destroyAll3DTexts()
    for index, text in ipairs(GetAllText3D()) do 
        DestroyText3D(text)
    end
end

See also