Scripting/Squirrel/Functions/CreateSphere
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
This function will create a sphere.
Syntax
1
CreateSphere( player, world, pos, rgb, radius )
Arguments
1
- Player | null player - The player to stream this sphere to. If player is null it will be shown to everyone
- int world - The world id
- Vector pos - The sphere position
- cRGB rgb - The sphere color
- int radius - The diameter of the sphere
Example
The following example will create a sphere
function onPlayerCommand( player, cmd, text );
{
if ( cmd == "sph" )
{
CreateSphere( player, player.World, player.Pos, RGB(255, 0, 255), 2);
}
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.