DrawPoint3D

From Onset Developer Wiki
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.
DrawPoint3D

Type: Function
Context: Client
Introduced: v1.0

Description

Draws a point in 3d space.

Syntax

DrawPoint3D(x, y, z [, PointSize, bForeground])

Parameters

  • x
    World X location
  • y
    World Y location
  • z
    World Z location
  • PointSize (optional)
    Size of the point, defaults to 1.0
  • bForeground (optional)
    true to draw before geometry, false to draw in world space.

Return Value

  • Returns nothing.

Example

Example usage can be found in the map editor script package: https://github.com/BlueMountainsIO/OnsetLuaScripts/blob/6f45ad9607e30c97f4f1d58443d808da632d4d91/mapeditor/client/editor.lua#L162

See also