Methods
-
off_pixels(dropdown_pixel)
-
Turns off the chosen pixel.
Check out the third party documentation for a more in depth explanation.Parameters:
Name Type Description dropdown_pixel
the pixel to turn off
Code Equivalent:
OffPixels();
-
off_pixels()
-
Turns off all of the pixels.
Check out the third party documentation for a more in depth explanation.Code Equivalent:
OffPixels();
-
random_eyes()
-
Sets the eyes to a random colour.
Check out the third party documentation for a more in depth explanation.Code Equivalent:
SetPixelRGB(EYE_LEFT, random(0, 255), random(0, 255), random(0, 255)); SetPixelRGB(EYE_RIGHT, random(0, 255), random(0, 255), random(0, 255));