Which AI Behavior Framework Should You Use? | AI Series 46

  Рет қаралды 36,676

LlamAcademy

LlamAcademy

Күн бұрын

Go to this video's Sponsor: snhu.edu/llamacademy and to see what the current average annual salary for a game developer programmer is and learn how you can get started!
Learn about popular approaches to implement AI behaviors in your game and see which one is right for your use case! Using a Ferrari isn't the right answer for every problem. You'll learn about Unstructured AI, State Machines, Behavior Trees, and GOAP (Goal-Oriented Action Planning), the pros and cons of each one, and in which use cases they're most suitable for.
What's next?
▶ Introduction to GOAP: • Introduction to GOAP |...
▶ GOAP Enemy AI Full Implementation: • GOAP Enemy AI FULL IMP...
▶ Behavior Tree Enemy AI Full Implementation: • Enemy Behavior Tree AI...
▶ State Machine Enemy AI Full Implementation: • Enemy State Machine AI...
💸 Ongoing sales 💸
⚫ The Dev Days of Summer on the Asset Store: assetstore.unity.com/?aid=110...
⚫ Check out the latest Humble Bundles www.humblebundle.com/software...
⚫ Publisher Sale! 50% OFF an entire publisher's Assets and one for FREE! Publisher changes weekly! assetstore.unity.com/publishe...
⚫ Save up to 50% on NEW Assets: assetstore.unity.com/?new_sal...
👨‍💻 Since we're not writing any code in this one, no GitHub project.
📚 Resources:
⚫ Animator Docs: docs.unity3d.com/Manual/class... | docs.unity3d.com/Manual/Anima...
⚫ UFSM - A free and open source Hierarchical Finite State Machine framework: github.com/Inspiaaa/UnityHFSM
⚫ Fluid Behavior Tree - a Free and Open Source Behavior Tree Framework: github.com/ashblue/fluid-beha...
⚫ Opsive Behavior Designer: assetstore.unity.com/packages...
⚫ AI Tree: assetstore.unity.com/packages...
⚫ Node Canvas: assetstore.unity.com/packages...
⚫ Free GOAP Framework: assetstore.unity.com/packages... | github.com/crashkonijn/GOAP
❤ Believe in LlamAcademy's mission and have received value from the videos? Become a Supporter:
⚫ Patreon: / llamacademy
⚫ KZbin Member: / @llamacademy or click the Join button on any video
⚫ GitHub Sponsor: github.com/sponsors/llamacademy
----
Most tutorials come from knowledge gained making survival.llama.software Llama Survival - a top-down zombie survival shooter for Android and iOS.
I also have some Unity Assets: assetstore.unity.com/publishe...
Some links may be affiliate links, which at no additional cost to you, gives me a small portion of the purchase.
#unitytutorial #tutorialtuesday #gamedev #tutorial #unity #llamacademy #gamedevelopment
Chapters:
00:00 Introduction
00:24 Unstructured AI
04:34 Sponsor - Southern New Hampshire University
06:06 State Machine
08:53 Behavior Tree
11:50 GOAP - Goal Oriented Action Planning
16:30 Support LlamAcademy

Пікірлер: 82
@CrashKonijn
@CrashKonijn 10 ай бұрын
Thanks for mentioning my project! Means a lot ❤
@LlamAcademy
@LlamAcademy 10 ай бұрын
Thanks for providing such an awesome tool for us in an open source format 🧡
@brickch4pel
@brickch4pel 10 ай бұрын
I can always count on your channel for learning something new or even just clarifying some general concepts, even after years of gamedev.
@Trinimp
@Trinimp 4 ай бұрын
i find the goap cons funny, because when i started imaging ai for my game, its the first design i thought of, without ever hearing about it.
@LlamAcademy
@LlamAcademy 4 ай бұрын
You are too powerful 💪 great first idea
@lukeloobey
@lukeloobey 9 ай бұрын
This is a great video with a really good overview of the different AI behavior models. It has enough detail to be very informative on each topic but not so much to be overwhelming with info, love it.
@alec_almartson
@alec_almartson 10 ай бұрын
Thank You for making this video 💯👍🏻. So far I've been using my own solution based on FSM with some additions to address some special use cases, but I want to expand those functionalities, so I really have to choose a more developed, existing solution. So I will rewatch your video in the future as I will have to choose an A.I. Framework for a Game with enemies and bosses functioning under a "more interesting" A.I. Behaviour. It's very good to be able to count on you as a teacher for these "cool things" related to Unity, Game Dev, A.I., etc 😄
@themerpheus
@themerpheus 10 ай бұрын
AI Tree is pretty good, much close to unreals behavior trees. Behavior designer starts getting very cumbersome to work with after having a couple of deep branches. Also EQS is a really important point in that one, because without EQS, you need a lot of leg work on AI positioning.
@LlamAcademy
@LlamAcademy 10 ай бұрын
Agreed. EQS is a really nice benefit for using AI Tree over some of the other mentioned behavior tree solutions!
@DELPRODBEATS
@DELPRODBEATS 10 ай бұрын
внатуре
@madboss2713
@madboss2713 10 ай бұрын
@@DELPRODBEATS really
@madboss2713
@madboss2713 10 ай бұрын
@@DELPRODBEATS pls speak English, Dunduk
@Joshua-hb7cs
@Joshua-hb7cs 5 ай бұрын
Whats EQS
@drewvananne1796
@drewvananne1796 3 ай бұрын
Thanks for the nice video! As some other comments have mentioned, combining hierarchical state machines with behavior trees can be very powerful. I've done this with behavior trees as the base framework of the AI, and the state machines existing as "Selector" nodes in the tree. When the state machine node is ran, it runs the statemachine logic and selects the branch that corresponds to that state. If a single state's tree becomes too complex, it can be broken down into smaller substates each having their own behavior tree and a new statemachine node at the root of them. I suppose it all comes down to preference but I prefer to handle scripted decision making with heirarchical state machines as you can have short lists of all the conditions that cause state transitions in one spot for each state or substate. Whereas behavior trees can become quite unruly if you have a single large tree jumping around to different points in that tree. (You have to remember which parts of the tree jumps to which other parts and how those nodes decide to jump. Essentially, the transitions feel scattered across the entire tree which has driven me crazy in the past) So, I try to keep behavior trees smaller and more readable by keeping them as directed acyclic graphs. Basically, just a convenient way to form sequences of actions with a given flow, while HFSM handles the transitions. If the desired behavior needs to more complex or emergent behaviors are desired, I agree that other frameworks like Utility AI or some kind of planner like GOAP or HTN can be nice. Really just comes down to what kind of behaviors you want from the AI and weighing the pros and cons, but I often like using the most simple frameworks first, and only delving into the more advanced frameworks for the specific AI states that need to be more complex.
@LlamAcademy
@LlamAcademy 3 ай бұрын
Great suggestion. I typically start with the most simple approach and move up in complexity only when required as well.
@brazenzebra9581
@brazenzebra9581 10 ай бұрын
I prefer the goap like structure. I have pseudo coded a structure similar to a goap-like structure for my simulation games and I think those kinds of structures make the most sense for complex behaviors. I just didn't realize the structure had a name. lol. Now it will be easier to find how others have implemented it. Thanks for the exposure to all this info!
@SpencerYonce
@SpencerYonce 6 ай бұрын
I’m the same man.
@Kudoshi
@Kudoshi 10 ай бұрын
Great video. Have always been wondering about the different AI Behaviour Framework. Curious to know how other games does their AI
@panampace
@panampace 6 ай бұрын
The vast majority of AI enemies can simply use a state machine if all they need to do is pathfind and attack. Behavior Trees & GOAP are more for cases where your AI unit needs to interact with other systems.
@sinho113
@sinho113 10 ай бұрын
i'm new to making games in unity right now i'm using a mix between scripts to checks for conditions and animator state machine to perform them. enemy ai always trigger my procrastinator within ;D now i'm gonna take a look at behaviour trees
@wicgamesdev
@wicgamesdev 10 ай бұрын
I also like the Free Behaviour tree runner made by The kiwi coder, a mate developper on unity. got some bugs, but does the job, higly customizable.
@lucasrybzinski
@lucasrybzinski 10 ай бұрын
very good! Relevant content.
@CharlieFleed
@CharlieFleed 10 ай бұрын
I am using a combination of hierarchical state machines and behavior trees for my XCOM-style prototype. Basically I run a different tree in every state. I coded both (borrowing A LOT from existing literature), so no fancy UI, all in code, but still quite modular and I am very happy with the result. I recommend looking into this sinergy. Hierarchical SMs can really address a lot of the scalability problems of FSMs.
@LlamAcademy
@LlamAcademy 10 ай бұрын
I agree HFSM helps a lot with scalability, but still I find it cumbersome to set up all of the transitions as is required for responsive AI decision making in a FSM/HFSM. It can be very effective. My preference for more complex leans towards BT/GOAP though because I find them easier to work with as the complexity increases.
@AdamFraserKruck
@AdamFraserKruck Ай бұрын
I agree. HSM and BT have different strengths. A mix of both like you have seems to work very well.
@travis391
@travis391 10 ай бұрын
Wish I could give more, keep up the great work!
@LlamAcademy
@LlamAcademy 10 ай бұрын
Wow! Thanks so much Travis! 🧡
@3zzzTyle
@3zzzTyle 4 ай бұрын
GOAP actually sounds like the most "natural" of the solutions, closer to how we make choices as opposed to having some kinda tree in the mind.
@Diablokiller999
@Diablokiller999 10 ай бұрын
This is awesome, right before I want to start with enemies :) Btw. do you mind doing something like this for Player Controllers as well? I'm currently struggling combining my movement, camera and weapon scripts, which are based off of (hierarchical) state machines and how they communicate with another. Like how my movement influences the camera and if I should be able to shoot while sliding. Still can't find a good solution and am now working with observer based patterns to send signals between those objects.
@robertwaremusic
@robertwaremusic 6 ай бұрын
I second this, same problems
@pirateskeleton7828
@pirateskeleton7828 3 күн бұрын
Behavior trees are still state machines, however it organizes the states by hierarchy and goes into sub-states. You can massively increase the scalability of a state machine by creating sub-states. There is no reason anyone would have to define every single transition condition between every state.
@GradoFun
@GradoFun 10 ай бұрын
I would like to see some tutorials on trees or goap, in terms of some action or strategy game
@LlamAcademy
@LlamAcademy 10 ай бұрын
Stay tuned 😉
@cynth4941
@cynth4941 10 ай бұрын
Behaviour Designer (asset shown on video) is on sale right now btw.
@obscure045
@obscure045 10 ай бұрын
Very good explanation. Can you make a tutorial on G.O.A.P?
@LlamAcademy
@LlamAcademy 10 ай бұрын
Thanks! I'm working on something with GOAP now 😉 stay tuned
@restart_gaming
@restart_gaming 7 ай бұрын
@@LlamAcademy looking forward to it! :)
@quentinquadrat9389
@quentinquadrat9389 9 ай бұрын
Nice video! I did not know about GOAP. Your video is missing talking about of logical / planning languages such Prolog and PDDL to have a full analysis :)
@LlamAcademy
@LlamAcademy 9 ай бұрын
Thanks! Maybe PDDL deserves its own full video 🤔
@quentinquadrat9389
@quentinquadrat9389 9 ай бұрын
@@LlamAcademy yes PDDL is not very known
@gendalfgray7889
@gendalfgray7889 7 ай бұрын
I you look closely you will see that BT is state machine. Difference is transition rules fused with tasks and transitions go to next branch. That simplification of transitions sacrifice flexibility for better readability.
@samuelbegue4756
@samuelbegue4756 10 ай бұрын
if you want a video subject I think it could be interesting to do a series on the development of a hearthstone-style combat card system
@LlamAcademy
@LlamAcademy 10 ай бұрын
Thanks!
@jeffreyhersh908
@jeffreyhersh908 10 ай бұрын
Great video. Any thoughts on Utility AI or a GOAP/Utility hybrid?
@GiantsOnTheHorizon
@GiantsOnTheHorizon 10 ай бұрын
I’ve been using the WiseFeline Utility AI. I haven’t combined it with GOAP but, I really like it’s flexibility.
@LlamAcademy
@LlamAcademy 10 ай бұрын
I didn’t dive into Utility AI yet, but with my super basic understanding it sounds like that’s the ultimate combination for advanced AI like RTS “main” AI. I was thinking about the RTS AI a lot for this video. I cut out all my discussion on it because I thought it needed more investigation before I talked a lot about it. Even with GOAP I was struggling to see how the RTS AI would be able to multitask effectively outside of throwing several options against the GOAP system and picking the “best” one. From what I understand this is a function Utility AI can handle more effectively when combined with GOAP.
@GiantsOnTheHorizon
@GiantsOnTheHorizon 10 ай бұрын
@@LlamAcademy I'm not familiar enough with GOAP to know how it interacts with with Utility AI. Maybe with the priority system but, Utility AI seems to use that too. I've spent a week or so learning and documenting WiseFeline which I really like. If you ever want to do a video on the topic and want an easier path to get started, I'd be happy to share my notes and answer any questions. By the way, what I like about Utility AI is that you basically have Actions, Considerations, and Targets as your main concepts. There are typically multiple Considerations on each Action which get added together. Based on the resulting value, it is determined what Action should be taken. While an Action doesn't always have to go to a "Target' that is often what the Action does. So... you have a pretty simple structure which just keeps scoring itself. As things change on your screen, the scores will continue to determine what the proper action is and what target to go to or what thing to do. Hope this helps.
@jeffreyhersh908
@jeffreyhersh908 10 ай бұрын
@@LlamAcademy Yeah GOAP doesn't seem like a good fit with an RTS. However, Utility is one since you don't need to run the A* algorithm for each decision. The dark art with Utility AI is the costing function to determine your considerations and actions. FYI, there is a newer form of GOAP that organizes collections of actions into tasks. So it saves some processing by fitting together these collections of actions to meet the goal. I unfortunately do not remember what is it called off the top of my head but it was used in the Transformer: Cybertron games from a few years ago.
@TChrisBaker
@TChrisBaker 10 ай бұрын
I have been learning about Utility AI. This video series gave me a good start kzbin.info/aero/PLDpv2FF85TOp2KpIGcrxXY1POzfYLGWIb
@LlamAcademy
@LlamAcademy 10 ай бұрын
Go to this video's Sponsor: snhu.edu/llamacademy to learn more about an accredited degree program in Game Design and Development! Special thanks to SNHU for sponsoring this video! In case you skipped the description, here you can find some free and paid solutions for State Machines, Behavior Trees, and GOAP!: ⚫ UFSM - A free and open source Hierarchical Finite State Machine framework: github.com/Inspiaaa/UnityHFSM ⚫ Fluid Behavior Tree - a Free and Open Source Behavior Tree Framework: github.com/ashblue/fluid-behavior-tree ⚫ Opsive Behavior Designer: assetstore.unity.com/packages/tools/visual-scripting/behavior-designer-behavior-trees-for-everyone-15277?aid=1101l9QvC ⚫ AI Tree: assetstore.unity.com/packages/tools/behavior-ai/ai-tree-229578?aid=1101l9QvC ⚫ Node Canvas: assetstore.unity.com/packages/tools/visual-scripting/nodecanvas-14914?aid=1101l9QvC ⚫ Free GOAP Framework: assetstore.unity.com/packages/tools/behavior-ai/goap-252687?aid=1101l9QvC | github.com/crashkonijn/GOAP Some of these links may be affiliate links, which at no additional cost to you, gives me a small portion of the purchase.
@charlotte80389
@charlotte80389 10 ай бұрын
underrated af
@PixelBlight
@PixelBlight 10 ай бұрын
Don't underestimate the "Any" state as it can make your spiderweb look more like a tree, and avoid n² 😅
@johnblake5114
@johnblake5114 8 ай бұрын
Which one does GTA or Elden ring use? Anyone know?
@eryberto87
@eryberto87 7 ай бұрын
What about utility AI?
@pavanvenkat9182
@pavanvenkat9182 8 ай бұрын
what do you think will be a good framework for a game like domino ?
@LlamAcademy
@LlamAcademy 7 ай бұрын
Dominos like the tabletop game with the little white pieces and black dots? I'm not an expert at this game but I think it's relatively simple based on what you have available and the available moves. With my current knowledge of that game I'd honestly probably start with Unstructured AI because I think it's very simple. You have it analyze your "hand" and the board and pick the "best" or a random available move. Even to add difficulty you could just weight the available moves on how good they are and have different difficulty levels prefer better/worse moves.
@pavanvenkat9182
@pavanvenkat9182 7 ай бұрын
@@LlamAcademy , got it thanks!
@brutalgamer1507
@brutalgamer1507 10 ай бұрын
sir how can we create advanced AI like souls game like sekiro dark soul please please
@LlamAcademy
@LlamAcademy 10 ай бұрын
I haven’t played that so not sure 🤔
@brutalgamer1507
@brutalgamer1507 10 ай бұрын
@@LlamAcademy no need to play just watch sekiro enemy ai video that enough
@brutalgamer1507
@brutalgamer1507 10 ай бұрын
@@LlamAcademy sir tell me how can i create enemy strafing bheavior when player is also strafing. I mean just watch sekiro vs isshin boss fight on yt you will get qn idea what i am talking about
@Hazzel31337
@Hazzel31337 4 ай бұрын
nice overview
@LlamAcademy
@LlamAcademy 4 ай бұрын
Thanks 😊!
@treymtz
@treymtz 5 ай бұрын
Would GOAP be the same as Utility AI?
@LlamAcademy
@LlamAcademy 5 ай бұрын
Great question! GOAP and Utility AI are different. DukeZhou on Stack Exchange does a pretty good writeup of how they are different: ai.stackexchange.com/questions/8651/what-is-the-difference-between-goal-based-and-utility-based-agents
@donaldwheeler5989
@donaldwheeler5989 4 ай бұрын
How about HTN?
@syntax_error6882
@syntax_error6882 10 ай бұрын
fluid behavior tree and its free ;-)
@LlamAcademy
@LlamAcademy 10 ай бұрын
Thanks! I'll add that as a reference in the description!
@edward3190
@edward3190 Ай бұрын
thanks!
@SuliXbr
@SuliXbr 3 ай бұрын
I don't see how goap is different from behavior tree, it just depends how you set up the order of priorities in the behavior tree
@manofapocalypse
@manofapocalypse 6 ай бұрын
7:36 thats why i call animations from code
@therebelliousgeek4506
@therebelliousgeek4506 10 ай бұрын
Behaviour Designer tutorial series please?
@LlamAcademy
@LlamAcademy 10 ай бұрын
Something with designing Behavior Trees is in the works 😉
@therebelliousgeek4506
@therebelliousgeek4506 10 ай бұрын
You're a savior Liam@@LlamAcademy
@zendraw3468
@zendraw3468 10 ай бұрын
a bit overkill on the red paint there.
@LlamAcademy
@LlamAcademy 10 ай бұрын
Yeah....I got it done the day before I recorded this so it was still on my scalp 😅
@Happy-go-luckyTV
@Happy-go-luckyTV 10 ай бұрын
I feel like goal oriented is simply an abstraction of AI.
@svenrawandreloaded
@svenrawandreloaded 4 ай бұрын
4:35 don't waste your time at school, ESPECIALLY with something like game dev. It's incredibly expensive and most industry jobs ARE NOT worth it and are probably NOT prevalent in your area. Besides, the only way you will ever learn something is if you have enough interest in it to the point where you can teach yourself.
@rjmichalski7172
@rjmichalski7172 6 ай бұрын
A blend tree would fix the animator mess
I Built a Shelter House For myself and Сat🐱📦🏠
00:35
TooTool
Рет қаралды 36 МЛН
ТАМАЕВ vs ВЕНГАЛБИ. Самая Быстрая BMW M5 vs CLS 63
1:15:39
Асхаб Тамаев
Рет қаралды 4,5 МЛН
🍟Best French Fries Homemade #cooking #shorts
00:42
BANKII
Рет қаралды 65 МЛН
This Problem Changes Your Perspective On Game Dev
25:51
Jonas Tyroller
Рет қаралды 347 М.
Why Stairs Suck in Games... and why they don't have to
11:24
Nick Maltbie
Рет қаралды 1,5 МЛН
GOAP Enemy AI FULL IMPLEMENTATION | AI Series 50 | Unity Tutorial
1:10:13
When Optimisations Work, But for the Wrong Reasons
22:19
SimonDev
Рет қаралды 828 М.
Programming a BETTER state machine
10:16
iHeartGameDev
Рет қаралды 62 М.
The Future of Game Development
8:58
Brackeys
Рет қаралды 1,1 МЛН
An introduction to Shader Art Coding
22:40
kishimisu
Рет қаралды 918 М.
I Built a Shelter House For myself and Сat🐱📦🏠
00:35
TooTool
Рет қаралды 36 МЛН