Hi guys, I'm fairly new to working with forge, and I ran into a bit of a rut while working on my mod.
I'm trying to find some method or member I can call to check the strength of the redstone signal that my block is receiving. I've had a look at BlockRedstoneWire and BlockRedstoneLight for some hints, however the only public methods I could find tell me only if there is or is not power, not the strength of that signal between 0 and 15. My closest guess is that I may be able to use getMaxCurrentStrength(), though the comments on that were a bit ambiguous.
My goal for this block is to detect the strength of a redstone signal and then adjust its texture accordingly.