VBGamer |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RE: I need help with different types of translucen Steven Blom (9 replies, 0 views) (2000-Oct-11) Can't you just reverse what is read from the surface?
eg...
red = red part of (surface.getpixel(x,y))
green = green part of (surface.getpixel(x,y))
blue = blue part of (surface.getpixel(x,y))
red = 255- red
green = 255 - green
blue = 255-blue
calculate alpha...
I'm too tired to do more than psudo code...
|