I have a few UISliders that should only be enabled after an In App Purchase is made. I was trying to find a way to disable them, but I don't see a method in the script reference for disabling/enabling a UISlider. As a workaround, I just created a purchase button that covered up the UISliders, but it seems that the touch events bubble through to both the button and the UISlider, so you can still move them through the button that is on top of them.
Am I missing something simple? Ideally, I'd like to call a setEnabled = false, and see the Slider grey out and stop responding to touch events.