A1. you need to change the color codes in the .rs file to the proper values..
IN RED
Code:
void setColor(int c) {
if (State->mode == 1) {
// purple
color(1.0f, 0.0f, 1.0f, 0.8f);
} else if (c == 0) {
// Blue
color(0.0f, 0.4f, 1.0f, 0.8f);
} else if (c == 1) {
// white
color(1.0f, 1.0f, 1.0f, 0.8f);
} else if (c == 2) {
// pink
color(1.0f, 0.4f, 0.8f, 0.8f);
} else if (c == 3) {
// yellow
color(1.0f, 1.0f, 0.0f, 0.8f);
}
}
the code is (red, green, blue, transparency)
Code:
ie. (1.0f, 0.0f, 0.f0, 0.9f) would be pure red
to get codes correct for a specific color use an RGB color chart..
IMPORTANT---- RGB code looks like this for Orange for example 255-165-0.. to get the RGB code into the code used by the program you simply devide the RGB values by 255... so... orange.. 255-165-0 would be (1.0, 0.6, 0.0, 0.9)
the transparency i never really mess with.. I belive less # value is more transparent
A2. you got me... lol im not much of a programmer but i would love to find out how to do this