Cannot DrawCircle brighter than background of CreateWindow #1115
-
Hi all! How can I solve this problem? I would also want to ask if there is a way of modifying the color of Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
"A" is actually "Alpha", it controls the transparency of the object. I am not sure what the default blending method is right now but I believe it is just weighting the object and everything below. In your case, I believe it will be something like A * RGB_top + (1-A) * RGB_Behind. |
Beta Was this translation helpful? Give feedback.
-
any chance you would be willing to share the script? |
Beta Was this translation helpful? Give feedback.
"A" is actually "Alpha", it controls the transparency of the object. I am not sure what the default blending method is right now but I believe it is just weighting the object and everything below. In your case, I believe it will be something like A * RGB_top + (1-A) * RGB_Behind.
If you want to dynamically change the background, I would just throw a Quad behind the circle, which will allow you to easily change the color whenever you want.