SetText3DText

From Onset Developer Wiki
Revision as of 13:36, 5 January 2020 by 28days (talk | contribs) (Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|Updates a 3D Text label created earlier with CreateText3D.}} {{FuncSyntax|SetText3DText(text3d, text)}} {{FuncParameters}...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
SetText3DText

Type: Function
Context: Server
Introduced: v1.0

Description

Updates a 3D Text label created earlier with CreateText3D.

Syntax

SetText3DText(text3d, text)

Parameters

  • text3d
    The text 3D identifier
  • text
    Text you want to show

Return Value

  • Returns true on success.

Example

textId = CreateText3D("Okay", 20, 0.0, 0.0, 1600.0, 0.0, 0.0, 0.0)
SetText3DText(textId, "Hey!")

See also