vote up 0 vote down star

I'm drawing stuff on a bitmapData and I need to continuously fade every pixel to 0x808080 while still drawing (its for a DisplacementMapFilter)... I think this illustrates my problem:
http://www.ventdaval.com/lab/grey.swf

The simpler approach I tried was drawing a semi-transparent grey box on it, but it never reaches a single color (i.e. 0x808081 will never be turned to 0x808080)... The same kind of thing happens with a ColorMatrixFilter trying to progressively reduce the saturation and/or contrast. (the example above is applying a filter with -10 contrast every frame).

I'm trying paletteMap now, and I'm sensing this could be the way to go, but I haven't been able to get it... any ideas?

flag

1 Answer

vote up 1 vote down

You can try to fade it slightly more than you are fading it now, so color will go to 0x808080, you just need to do some calculations.

Yes, you can do this with paletteMap. The third way will be to write PixelBender shader for it. You can also use your normal fading and do paletteMap or PixelBender one once in a few frames, to speed-up all this.

link|flag
Thanks for the answer, but the calculations tell me that I would need to fade by more than 50% to be able to make a 0x808081 pixel into a 0x808080. I ended up using merge and playing with the alpha channel, which kind of worked, but I was unable to get it perfect and then I run out of time to keep trying with PixelBender or paletteMap, which btw I still can't understand how to use exactly... if you have any good reference would be great :) – Cay 8 hours ago

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.