Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Hi, why is this happening?
In this graphic, the graphic editor indicates that this green is the RGB value 0, 85, 0
If I put that value in the graphic effect "SetColor" I get a different green, in this image you can see.
I haven't checked, but I'm guessing one is based on 0 to 100, and the other 0 to 255.
Ok, that's right, the "SetColor" effect supports values from 0 to 100.
Thanks.
How is an RGB value supposed to be converted to this "SetColor" format?
Develop games in your browser. Powerful, performant & highly capable.
value/256 * 100
For your RGB value of 0,85,0 it would be 85/256 * 100 ≈ 33 for green.