In the tutorial, Part VIII: Enemies and Basic AI, there is a step left out where the following piece of code needs to be added to the Enemy class in order for them to update properly.
override public function update():Void
{
_brain.update();
super.update();
}
In the tutorial, Part VIII: Enemies and Basic AI, there is a step left out where the following piece of code needs to be added to the Enemy class in order for them to update properly.
There is also a typo in the same page where
should read:
Also:
should be
Don't know if you guys already knew about these issues but just wanted to point them out. Anyway, great tutorial!