Actor visibility won't change
I have an actor whose visibility is by default set to true. When an attributes changes I've set it to change self.Graphics.Visible to false. The problem is that all this does is change the text the actor is displaying to invisible, and the actor itself is still there.
Any ideas as to how I could fix this?
Any ideas as to how I could fix this?
Comments
Hi @redleaf the Visible attribute can't be changed during runtime anyway, so use Alpha as @Braydon_SFX suggests. :-)
....or put the rule: When self.Color.Alpha =1 in the touch Rule...