psmove_set_leds() private method

private psmove_set_leds ( IntPtr move, char r, char g, char b ) : void
move IntPtr
r char
g char
b char
return void
Ejemplo n.º 1
0
 public void SetLED(Color color)
 {
     PSMoveAPI.psmove_set_leds(handle, (char)(color.r * 255), (char)(color.g * 255), (char)(color.b * 255));
 }