Are there ANY resources to learn how to program AI in UE4?

I’m looking for tutorials or courses on how to program enemy AI for combat (melee or ranged). I can’t find a single good course anywhere, and there don’t seem to be any official resources for it either. Is there any tutorial out there at all, free or paid, that teaches you how to program enemy AI and is actually good?

Hi,

there are some. This here gives you some basic overview over the system Introduction to AI with Blueprints | Course

Behavior tree quickstart guide for some basic AI Behavior Tree in Unreal Engine - Quick Start Guide | Unreal Engine 5.3 Documentation

EQS quickstart guide Environment Query System Quick Start in Unreal Engine | Unreal Engine 5.3 Documentation

And some faster/more in depth overview https://www.youtube.com/watch?v=iY1jnFvHgbE

And you can look through this here from about minute 20 to get some feeling for the limitations of the behavior tree system https://www.youtube.com/watch?v=Qq_xX1JCreI
[HR][/HR]
Basically you first off need some fairly good knowledge of blueprints. If you don’t have that, then you should learn blueprints first. Then learn to use behavior trees.

Also imo with blueprint only (so no C++) you can only make basic AI, since there is quite a lot AI functionality that is not exposed to blueprints (e. g. team system, what sense triggered the perception update -> will result in confusion/workarounds if you use more than one sense, team sense, sight perception stimuli strength), but ofc for a basic AI you won’t need all that.

Hi,

Thanks a lot for the resources! Sorry I wasn’t able to get back earlier.