I have a UISlider giving me float values between 0 and 255 and I need to set the opacity of an Cocos2D that is in Glubyte.
How do I convert a float to GLubyte ??????
thanks
|
I have a UISlider giving me float values between 0 and 255 and I need to set the opacity of an Cocos2D that is in Glubyte. How do I convert a float to GLubyte ?????? thanks |
||||
|
|
|
A
So, conversion is actually no problem (have a look at this post, which offers a few possible approaches behind the "basic" Since you say that your slider gives you values between 0 and 255, you should have no problem, though. |
|||
|
|
|
If your slider is already configured for the range 0-255, then you don't have to scale the value, you just have to convert the type. Something like this should work:
|
|||
|
|
I didnt notice the UISlider range is already between 0-255.. so remove the multiply above answer..
|
|||
|