Add a single dot to the sprite.
Its color will be the one set by the COLOR statement.
add s dot x,y,z
s sprite name x horizontal y vertical z depth
Source create sprite 8 as "cube" move "camera" to 0, 0, -10 ?reset = 60 do turn "cube" by 1 update color (random 10) ?x = (random 1 to 8) ?y = (random 1 to 8) ?z = (random 1 to 8) add "cube" dot ?x, ?y, ?z ?reset -1 if ?reset < 1 ?reset = 60 clear "cube" end loop
