Ok, so in this case I dont need to check if its visible before hiding it? I was writing this all along:
if (gMyGui.visible) gMyGui.Visible = false...as in, if its already hidden, then dont try to hiding it, just leave it as it is... I thought I would be saving a "process" this way (?)
Is it a waste of time for this "check"?
(kinda like doing "if this exists, delete it, if not, do nothing"...)
if (gMyGui.visible) gMyGui.Visible = false...as in, if its already hidden, then dont try to hiding it, just leave it as it is... I thought I would be saving a "process" this way (?)
Is it a waste of time for this "check"?
(kinda like doing "if this exists, delete it, if not, do nothing"...)