Hey fellas!
To make the game faster, I decided to have enemies not do anything when they are out of vision by choosing the appropriate option in their Actor Control.
Here is the problem though.
I have an enemy. It has some CollisionFree checks in its DrawActor. When it is out of vision it then does not do Draw Actor. However, I somehow need to give it the initial xvelocity=1 when it is within vision.
Before I encountered the fps problem, I had the initial xvelocity=1 in the Create Actor. What happens is that Create Actor does work when the actor is out of vision, thus all my enemies out of vision simply crawl away from the map and by the time the player gets there, they are not there.
So I think my fps problem would be solved if I simply find a way to set this xvelocity to 1 only when the exact enemy clone is within view. Do you guys think this is possible?
In other words - is there any sort of an In Vision event?