Can I set a GUITexture to ignore OnMouseOver,Enter,Exit…?
When using it as a mousecursor it
p.
Can I set a GUITexture to ignore OnMouseOver,Enter,Exit…?
When using it as a mousecursor it
p.
Just don’t implement those methods on it.
Alternately, make a variable switch; if the variable is false, don’t execute any code.
function OnMouseEnter() {
if (mySwitch) {
...
}
}