How to hide and show guiTexture? and the gui txture must be responsive.
void OnMouseDown (){
// guiTexture show
guiTexture.enable;
}
How to hide and show guiTexture? and the gui txture must be responsive.
void OnMouseDown (){
// guiTexture show
guiTexture.enable;
}
Use guiTexture.enabled = true; to enable it and guiTexture.enabled = false; to disable it.
woah I never knew I could do that XD