playstation controller lightbar colours

- fix controller feature flags not actually being flags
This commit is contained in:
minenice55
2022-07-25 18:36:32 -04:00
parent a713895f96
commit d3c3beb950
4 changed files with 135 additions and 49 deletions

View File

@ -59,5 +59,13 @@ namespace HeavenStudio.Util
var blue = ( value >> 0 ) & 255;
return new Color(red/255f, green/255f, blue/255f);
}
public static int RgbToInt(Color color)
{
var red = (int)(color.r * 255);
var green = (int)(color.g * 255);
var blue = (int)(color.b * 255);
return (red << 16) | (green << 8) | blue;
}
}
}