Jcw87 / c2-sans-fight

Undertale Sans Fight Clone
http://jcw87.github.io/c2-sans-fight/
527 stars 494 forks source link

Bluebone has the wrong color. #97

Closed iKNIFEu closed 3 years ago

iKNIFEu commented 3 years ago

Blue bone actual color (RGB): Red: 0 Green: 65 Blue: 100

Orange bone actual color (RGB): {You will probably not use but ok}

Red: 100 Green: 75 Blue: 0

ChaboCode commented 3 years ago

lmao how precise

iKNIFEu commented 3 years ago

so am I correct lol

Jcw87 commented 3 years ago

I'm gonna settle this with a lossless screenshot. image The color picker in MSPaint shows these RGB values:

R: 20
G: 169
B: 255

When you scale it down from a 0-255 range to a 0-100 range, you get these numbers:

R: 7.843
G: 66.2745
B: 100

The scaling is calculated by taking the MSPaint number, dividing it by 255, and then multiplying it by 100. Here are the numbers used in this game:

R: 0
G: 66
B: 100

So the only thing wrong here is the red channel.

iKNIFEu commented 3 years ago

Ah, alright. guess I was almost correct. Well, guess I'll call it a day.