Quick question - I noticed that objects in C2 have "Opacity" property, but there is no "Visibility" or "IsVisible" property.
Why? Or am I missing something?
I want to be able to check visibility in formulas, something like this:
Score = (Enemy.Health>0 & Enemy.IsVisible ? 5 : 1)[/code:wyj4l589]
I know I can do the same by creating different conditions (Enemy Is Visible -> do this, Enemy Is Not Visible -> do that), but it makes the code much more cluttered - I'll end with 5 or 6 lines of code instead of 1.