Sending a hex value will turn the LEDs to the same hex color.
What ports can I use it on?
All of them!
Code
usingMagic;publicclassDemo:MonoBehaviour{ // create a reference to the modulepublicMagic.Modules.GlowModule glow;voidStart() { }voidUpdate() { // create a new colorColor blue =newColor(0,0,255); // call the module's functionglow.SetColor(blue); }}