Part 3 - AI
Turned » Devlog
I wanted to implement a free flow like combat system (Yes... I didn't foresee the complexity of such systems...).
To do that, I put in place two entities :
- The Enemy : handle all the not in combat AI
- The Director : take control of all in combat enemies to deliver a less messy combat experience (not everyone hitting and running everywhere)
The main idea was to make enemies take turns.
I implemented a timer with a random limit (from .3 to 1.2 secs) that triggers one of the enemies action.
This system helped a lot with the messy "all hitting together melee combat" I got when enemies were alone.
So we have 4 states for enemies:
- Idle if there is no waypoint defined
- Patrol if they have waypoints and no player in sight
- Follow if the player have been seen
- InCombat if the player is close enough => The Director is now in control
The enemies movements are handled by Unity build-in navmesh system . This makes harder the fact to avoid the feeling of the AI gliding on the floor because I don't use root motion here and animation speed can be a little off sync with actual movement.
Turned
Vampire action game.
Status | Canceled |
Author | InOmS |
Genre | Action |
Tags | 3D, Beat 'em up, Singleplayer, Vampire |
Languages | English |
More posts
- Part 2 - PrototypingApr 08, 2019
- Part 1 - PlanningApr 07, 2019
Leave a comment
Log in with itch.io to leave a comment.