How A Navigation Mesh Works in 3D Games | AI 101

Поділитися
Вставка
  • Опубліковано 31 січ 2025

КОМЕНТАРІ • 88

  • @AIandGames
    @AIandGames  6 років тому +31

    Hope folks like the new format for AI 101, be sure to let me know in the comments. Meanwhile for any Rainbow Six: Siege fans out there, if you found that bit about the destruction and navmeshes interesting, be sure to check out Julien's full GDC talk. I've been waiting for an excuse to talk about it in a video! 😀
    ua-cam.com/video/SjkQxowsL0I/v-deo.html

  • @ImperialGoldfish
    @ImperialGoldfish 6 років тому +59

    That explanation of the dynamic nav-mesh in R6 was beautiful

  • @Shadoww2309
    @Shadoww2309 6 років тому +45

    Loved this video! I know nothing about programming, so these more "conceptual" rather than technical AI 101 videos are much more engaging for me. Keep it up!

    • @AIandGames
      @AIandGames  6 років тому +3

      Glad you like the new format. Hoping it proves more accessible for folks.

    • @dooZyz
      @dooZyz 4 роки тому +1

      learn you lazy bum

  • @ciberman
    @ciberman 4 роки тому +38

    I don't know if that the objective of the channel, but it would be great to have more technical videos explaining the algorithms internally used (for example, to build a navmesh, find the path with A*, smooth it and traverse it)

    • @marksmanmerc1
      @marksmanmerc1 2 роки тому +3

      This is exactly what I'm currently failing in attempting to find.

    • @greatcesari
      @greatcesari 2 роки тому +4

      @@marksmanmerc1 I think the footage in the beginning of the video demonstrates it. First you generate a mesh of connecting surfaces, then you partition that mesh using voronoi fracture. The voronoi fracture can then be interpreted as a graph where you can ultimately apply A* to have your AI navigate through it. That's the basics of it, but implementing it is obviously not so trivial.

  • @marinenukem
    @marinenukem 5 років тому +7

    I’ve been learning programming in school for a year or two with the hopes of becoming a game developer, and I must say that these videos are so amazing. I’ve been playing video games for as long as I can remember, and ever since I started learning basic programming I’ve been imagining how the game’s programming works as I was playing it. These videos explain in great detail aspects of games that I guessed how they functioned, and taught me other parts that I didn’t even know about. This entire topic is extremely interesting to me and I’m so glad I found your videos, because they explain pretty much everything I’ve been curious about, not to mention they’re entertaining and engaging.

  • @mnemnoth
    @mnemnoth 6 років тому +9

    Great video that R6 trick at the end is cool. Buying time for the systems to work by using an animation or sequence while presenting to the player that they are engaged. I always felt I was 'doing something' during those moments playing R6 because of the detailed and quick animations; but i was fooled! :)

  • @ekay10
    @ekay10 2 роки тому +1

    I love that you description is so well organised. I haven't started my game development journey yet but when I do I'm pretty certain I'll be spending most of my time on your channel. Keep up the good work 👍🏾

  • @AaditDoshi
    @AaditDoshi 6 років тому +3

    Great video.
    Usually when there is a terrain change, we don't recalculate the entire nav mesh, only the ones that are now considered dirty.

  • @AdamKrylon
    @AdamKrylon 6 років тому +3

    I really like this, you're gonna be the first youtuber I actually hit the bell for.

  • @MegapiemanPHD
    @MegapiemanPHD 6 років тому +3

    Nav meshes really do add a lot. Half Life 2 originally used nodes that had to be manually placed within a level that would connect to each other to create the paths the AI could use, which is very tedious to put together. Once Valve started using nav meshes, they can be quickly generated and edited as well as make the AI act more natural.

    • @randomcatdude
      @randomcatdude 4 роки тому

      Half-Life 2 and its derivatives still use nodes, though. But it's correct that navmeshes are much better for a variety of reasons.

  • @NaughtMax
    @NaughtMax 6 років тому +3

    This comes at a pretty perfect time for me, as I’m currently dealing with some of these navmesh issues with my AI

  • @Malidictus
    @Malidictus 6 років тому +11

    I'd suggest having a look at a long-forgotten game by the name of Carrier Command: Gaea Mission. That game manages to do pathfinding for wheeled vehicles with momentum, turning radius and large size, seemingly without a nav mesh or at least with minimal such. Well, it manages that for the most part... I'm told it's based on one of the Arma engines, so that might be interesting to explore.
    Castle Story is another good one, if only because they've had AI pathing issues for the last decade or so :) It's a game that has to manage a large number of workers moving across pretty expansive voxel-based terrain with a lot of vertical crossover and blocked paths, all of it malleable in real time. To the game's credit, it does fairly well with what's a non-trivial problem.

    • @Andynox
      @Andynox 4 роки тому

      When he was talking about that holes in Rainbow Six: Siege, I immediatelly recalled another game worth mentioning - Red Faction. This was probably the first game that has implemented destructible environment.

  • @theloyalwraiths8827
    @theloyalwraiths8827 6 років тому

    AI and Games Hey Tommy Thompson, I just wanted to write this comment to say I have been watching your videos since your vid on the AI of Alien Isolation. You do an awesome jobs with these videos and I can't wait for more of your content, have a good one.

  • @OnyDeus
    @OnyDeus 6 років тому

    I really appreciate the range of knowledge provided in this video. I know about Nav Meshes but not the smarter tricks outlined in the games you mentioned.

  • @shadowlordalpha
    @shadowlordalpha 2 роки тому

    For more dynamic nav meshes you can actually split the mesh up a bit more and have join points like you would for different heights and such and simply have those be disabled when you can no longer get to the other area. This bypasses the need to redo the nav mesh as you build this ability into your navigation algorithm itself instead of needing to have the mesh do it.

  • @guilhermesfk
    @guilhermesfk 6 років тому +1

    Man, much thanks for this channel. Best of luck to ya

  • @lipid9119
    @lipid9119 6 років тому +24

    0:34 lady where the hell are you going?

  • @stuartm8335
    @stuartm8335 6 років тому +34

    GTA Glasgow
    Missions:
    Subcrawl
    Wear a blue jersey in the Brazen Head
    Try to cross Buchanan St on a busy Saturday
    Set GSoA on fire
    Secret base under the Necropolis
    Powerboat up the Kelvin
    Swordfight in Maryhill

  • @BitGamey
    @BitGamey 6 років тому

    Great video, looking forward to the rest of the series!

  • @JimmyGGG
    @JimmyGGG 3 роки тому

    Thanks for creating this, you explain it ace, I am a novice, trying to learn about AI, this has helped me a lot, cheers

  • @KenTWOu
    @KenTWOu 6 років тому

    A good way to get an idea, fast, of how navigation meshes work is to use Far Cry 3, 4, 5 free map editors on PC or consoles. You could raise a water level (if randomly generated template didn't have water from the get-go), draw a road, place a couple of buildings here and there, then the editor will generate AI data, so you could see all nav meshes for characters, water and ground vehicles. It displays AI covers as well.

  • @TheIrishGamerGuy
    @TheIrishGamerGuy 4 роки тому

    This explains why in the Test Server for Rainbow Six Siege's Neon Dawn season, on the redesign of the Skyscraper map the terrorists literally freeze up and don't enter the building if you play it as a defender.
    Ubi has yet to update the Nav Map I guess.

  • @Alpha-kt4yl
    @Alpha-kt4yl 6 років тому

    Well crafted video, if you keep this up it won't be long till you get a bigger community and more subs

  • @daggawagga
    @daggawagga 6 років тому

    I really like this 101 format

  • @TheAlison1456
    @TheAlison1456 Рік тому

    I specifically searched for this subject and found this.
    3:16 🤣🤣🤣🤣
    13:02 you really went out of your way to say "themself", I can hear the exertion. It wasn't worth it.
    14:48 that was really cool.

  • @chrismcauley7945
    @chrismcauley7945 5 років тому +1

    Fantastic video Tommy - I'm an aspiring game developer who learns a lot from your work. Do you have a patreon?

    • @AIandGames
      @AIandGames  5 років тому

      Thanks Chris. Glad you find my stuff useful. I'm over on Patreon at www.patreon.com/ai_and_games

  • @ayman001B
    @ayman001B 6 років тому

    This series is great keep it up ! :D

  • @TomaszRykala
    @TomaszRykala 4 роки тому

    Loved this. Subscribed.

  • @lee1davis1
    @lee1davis1 3 роки тому

    Always love your vids.

  • @Scarabola
    @Scarabola 4 роки тому +2

    12:43 "The game will search positions off-camera for the characters to spawn onto"
    Character then spawns on-camera.

  • @JamesMichaelDoyle
    @JamesMichaelDoyle 6 років тому

    Im still plugging through the bread production here, was a wonderful listen though, the Glasgow joke was nicely slipped in there by the way. Its thanksgiving here in Canada, not sure if you do it over there. If so, hope you have a lovely one.

  • @scottmckay9049
    @scottmckay9049 6 років тому

    Just what I needed for project thanks man

  • @EpicAOEsRealm
    @EpicAOEsRealm 6 років тому

    Great video,thanks for your hard work! :D

  • @goldengamer8510
    @goldengamer8510 4 роки тому +2

    10:02 you can see the alien in the wall

  • @marinenukem
    @marinenukem 5 років тому

    14:00 Oooohhhh, so that’s why my game tends to lag when I place a Mira. It has to calculate the separate nav mesh with the Mira placed, while also calculating and using the pre-Mira nav mesh. I think what it is, is that either my game is bugged so that the post-Mira nav mesh doesn’t sync efficiently or quickly, or Mira’s window isn’t optimized. I say this because my game typically stutters right as she finishes placing the window, so I assume it’s because it’s switching from one nav mesh to another.

  • @MrFlyingfoxzero
    @MrFlyingfoxzero 4 роки тому +1

    Ahh that Glasgow reference 😂

  • @RaveCSF2
    @RaveCSF2 5 років тому

    Thank you for adding subtitles ! As a french native, they are helpful when I don't understand or know some words. And Amazing content, too !

    • @AIandGames
      @AIandGames  5 років тому

      You're welcome! I understand that not only is the topic rather technical, but my accent doesn't always help either.

    • @RaveCSF2
      @RaveCSF2 5 років тому

      @@AIandGames Wow, that's such a fast answer ! Don't worry, your accent is all good, and I would even say that the reason I need subtitles is because you have a very rich english vocabulary (which makes me learn english vocab while also learning AI techniques, so cool !)
      I'm really excited to discover your other videos. Thanks for your work !

  • @SianaGearz
    @SianaGearz 6 років тому +1

    Who the hell uploads this early in the morning? It's all good though

  • @NathanJohnsonNaterspotaters
    @NathanJohnsonNaterspotaters 4 роки тому

    I would love to see an AMA or some sort of Q&A about AI in games with a pro like yourself. Know where I can find something like this?

  • @derptomistic
    @derptomistic 6 років тому +1

    With nav meshes, is it possible to give multiple values (i.e. speed vs safety (taking into acount cover and line of sight from the player)) to potential routes that the AI will take? For instance, in one circumstance where an AI needs to go to a certain place as quickly as possible regardless of risk to themselves versus another instance where it is best to take a safer route that may take longer.
    I assume something like this would be a combined effort from the NPC's AI and the nav mesh provided to it, but that's just my best guess...

    • @AIandGames
      @AIandGames  6 років тому +1

      Yes you can apply a cost to a region or surface such that it changes how dangerous or important that area is in the eyes of the NPC.

  • @hemangchauhan2864
    @hemangchauhan2864 6 років тому

    This is sub-consiously how I thought about how NPCs work, and the Bioshock Infinite one was exactly what I thought!
    I'm surprised that how heavily simulated games like Elder Scrolls and Deus Ex are even able to function. NavMesh must be really hard for them.

    • @spenceralbin7294
      @spenceralbin7294 6 років тому +2

      Bethesda tech games after Oblivion used the radiant AI system to make their NPCs more believable. Simply put, all NPC actors have a schedule that can be evaluated as a function of time. The games evaluate that function when NPCs are in range of the player and set them off to do whatever it is they are scheduled for. In those games nothing happens independent of the player, so when not in range they are not part of the simulation. The schedules are used to give the illusion that things do happen when the player is not around.

  • @jacobhaig2372
    @jacobhaig2372 6 років тому +1

    I love Nav mesh stuff, can i have more now? :)

  • @GamingWarlord64
    @GamingWarlord64 3 роки тому

    I wish all my school lectures where like this

  • @marinenukem
    @marinenukem 5 років тому

    I was wondering, do player entities also use nav meshes to determine where the player can and cannot go, or is it typically only used by NPCs? Or do player entities typically restrict movement by setting physical barriers or obstacles?

    • @lyndog
      @lyndog 5 років тому

      You probably found an answer to this already but just in case; as far as I am aware nav meshes and the like are generally used for AI controlled entities only. Players movement is normally restricted by physics etc as you guessed.

  • @zephyrusmckinnon4685
    @zephyrusmckinnon4685 5 років тому

    Great video!

  • @samuelhurel6402
    @samuelhurel6402 4 роки тому +2

    This explain what it is, not how it works... was looking for some algorithms

  • @phillippi2
    @phillippi2 6 років тому +2

    How does Non-ground-based a.i. navigate intelligently? I'm thinking of something like Half-life 2's gunships.
    I'm working on a a game based in the ocean and need for npc's to be able to navigate the environment on their own.

    • @AIandGames
      @AIandGames  6 років тому +2

      Try looking into height maps. They're ideal for characters that move around in such a manner.
      I'll be exploring this soon in a video looking at the flying characters in Horizon Zero Dawn.

    • @OmegaF77
      @OmegaF77 6 років тому

      My guess would be interconnected nodes.

    • @randomcatdude
      @randomcatdude 4 роки тому

      I believe Half-Life 2's Gunships mainly used pre-set paths to move.
      The map designer would just manually place a bunch of path nodes in the air, connect them up, and tell the Gunship NPC to start following a path, or even change it up and start following a different one.

    • @phillippi2
      @phillippi2 4 роки тому

      @@randomcatdude HL2's gunships use A* based path finding. The 'path nodes' you refer to just relay geometry information to the flying AI. This is so that it knows the shape of the geometry it needs to avoid. However, I'm not sure that this is a fit for my use.

    • @randomcatdude
      @randomcatdude 4 роки тому

      @@phillippi2 What is your source for this information?
      This page on the Valve Developer Wiki that I've linked below, states that they do not follow air nodes(which is likely what you're thinking of there). I've also explored the maps themselves in Hammer before, and found the paths that Gunships are set to follow. Considering both of these things, I believe your statement about them using A* is incorrect.
      developer.valvesoftware.com/wiki/Npc_combinegunship

  • @SmashTheState459
    @SmashTheState459 11 місяців тому

    what a great video

  • @henke37
    @henke37 6 років тому +14

    Letting the client recalculate the mesh? I duno, given the importance of the mesh quality, that seems exploitable.

    • @AIandGames
      @AIandGames  6 років тому +16

      Now that's what I thought when I first heard about this. In the talk they explain that the changes are replicated server-side and then all clients download the update using the same random generator seed. The replicated version is often 99% accurate to client, but that allows them to ensure server authority on the overall destruction and navmesh.

  • @nekrositoh
    @nekrositoh 6 років тому +3

    Lol "get tuda choppa" xD

  • @guywithgun6853
    @guywithgun6853 5 років тому

    NPCs: _I do as the navigation mesh guides_

  • @dragunov815
    @dragunov815 4 роки тому

    Neat.

  • @bob99774
    @bob99774 6 років тому

    Contrast's AI seems to have a lot of problem with the basic walking

  • @june_005
    @june_005 4 роки тому

    Can I just mention that you sound terrifyingly identical to Scott Manley?

  • @thewhitefalcon8539
    @thewhitefalcon8539 3 роки тому

    hmm, so in Rainbow Six Siege a hacked client can totally screw up all the AIs in the game?

  • @deadfishy666
    @deadfishy666 6 років тому

    I like Dűm more than Doom.

  • @henriklidstrom604
    @henriklidstrom604 6 років тому

    I still think you sound like Ian Rider

    • @AIandGames
      @AIandGames  6 років тому

      What, Ewan McGregor? Nah.

  • @Lukz243
    @Lukz243 6 років тому

    Dewm

  • @code-dredd
    @code-dredd 6 років тому +1

    One broken NPC down-voted this video.

    • @AIandGames
      @AIandGames  6 років тому +2

      My UA-cam nemesis strikes again!

  • @MelikecakeYAY124
    @MelikecakeYAY124 6 років тому

    DØM

  • @cold_static
    @cold_static 5 років тому +1

    Node Graph out of date. Rebuilding...

  • @FlymanMS
    @FlymanMS 6 років тому +2

    Ok, who else read it as "navigational memes"?

  • @Zeithri
    @Zeithri 6 років тому

    Very interesting video but trust me - The AI in Wildlands is utterly brain dead.

    • @AIandGames
      @AIandGames  6 років тому +1

      Oh I know how the Wildlands AI works and you're right, it's kinda dumb but the reasons for it are really interesting. There might even be an episode next year dedicated to it.