Exemple #1
0
 protected void getTintedColor(Color color, float[] result) {
   result[0] = tintStack.r * color.getRed();
   result[1] = tintStack.g * color.getGreen();
   result[2] = tintStack.b * color.getBlue();
   result[3] = tintStack.a * color.getAlpha();
 }