SetText3DLocation

From Onset Developer Wiki
Revision as of 08:51, 8 March 2020 by 28days (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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