| Property | Value |
|---|---|
| Native Name | _DRAW_SPHERE |
| Hash | 0x799017F9E3B10112 |
| Return Type | void |
| Parameters | x (float), y (float), z (float), radius (float), r (int), g (int), b (int), opacity (float) |
Description: Draws a 3D sphere, typically seen in the GTA:O freemode event "Penned In".
Example:

DrawSphere(35.45, 172.66, 126.22, 1.0, 0, 0, 255, 0.2)
Parameters
x(float) — X coordinate of the spherey(float) — Y coordinate of the spherez(float) — Z coordinate of the sphereradius(float) — Size of the sphere,1.0= 1 meterr(int) — Color red0-255g(int) — Color green0-255b(int) — Color blue0-255opacity(float) — Opacity from0.0-1.0