SetText3DLocation: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|Change the specified text 3D's location.}} {{FuncSyntax|SetText3DLocation(text3d, x, y, z)}} {{FuncParameters}} {{FuncParam|t...")
 
No edit summary
 
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server|1.1.0}}


{{FuncDescription|Change the specified text 3D's location.}}
{{FuncDescription|Change the specified text 3D's location.}}

Latest revision as of 08:51, 8 March 2020

SetText3DLocation

Type: Function
Context: Server
Introduced: v1.1.0

Description

Change the specified text 3D's location.

Syntax

SetText3DLocation(text3d, x, y, z)

Parameters

  • text3d
    The text 3D identifier.
  • x
    The X axis
  • y
    The Y axis
  • z
    The Z axis

Return Value

  • This function returns nothing.

Example

textId = CreateText3D("Okay", 20, 0.0, 0.0, 1600.0, 0.0, 0.0, 0.0)
SetText3DLocation(textId, 500.0, 500.0, 1600.0)

See also