Generate NavMesh from Your Terrain Paths

Download the Code - game.courses/navmeshgenerator/
💯Multiplayer Mastery Course - game.courses/mp/
🎓Learn Game Development - game.courses/bc/
Join the Group - unity3d.group/
Support the Channel by becoming a Member - / @unity3dcollege
Original Github Post - gist.github.com/druggedhippo/...

Пікірлер: 15

  • @anonymous49125
    @anonymous491252 ай бұрын

    fun fact... that 'goto escape' style break 3:37 is THE reason goto was added to c# at all (I remember reading MS saying that years and years ago). The story goes for C# they opted for goto over the PHP+JAVA style of 'break N' (where N is the amount of nested loops to break out from) and instead went with changing the flow of execution with goto... But I personally would love a break N in C# (as well as the goto, which has a number of very important and valid uses in C#)...

  • @random_precision_software
    @random_precision_software3 ай бұрын

    Oh... back to the old school... tutorials! Yay!

  • @Unity3dCollege

    @Unity3dCollege

    2 ай бұрын

    Yep!:) also moving the show and live streams to separate channels right now, slow tedious process tho :)

  • @HalcyonVoid
    @HalcyonVoid2 ай бұрын

    Wish they would just make a sustem to let us manually drawn the navmesh like bethesda does. Would make this whole proces 1000x easier and probably more efficie t as we can make it exactly how we want with fewer polygons.

  • @nicolasnadeau6673
    @nicolasnadeau66732 ай бұрын

    I haven't played with the feature yet but A* pathfinding project in the asset store has an auto nav mesh gen feature.

  • @ahmedkarim5894
    @ahmedkarim58942 ай бұрын

    I don't know but how about just adding a plane on top of the roads (of course remove the mesh renderer) and make only the plane walkable ?? Wouldn't this method give more control ??

  • @Dippps
    @Dippps2 ай бұрын

    can drop nav mesh obstacles and enable cut navmesh flag

  • @mehmedcavas3069
    @mehmedcavas30692 ай бұрын

    Is it possible to get the terrain paining channels and then select the "Dirt" layer id and create a mesh out of it? Like if the "Dirt" texture is on the R channel than it would give us a Red Black texture. then just create mesh. make in static. bake it and then destroy it

  • @Unity3dCollege

    @Unity3dCollege

    2 ай бұрын

    seems like a good way to go

  • @LlamAcademy

    @LlamAcademy

    2 ай бұрын

    This was the most efficient way I could make up how to do it. It can also be combined with adding NavMeshModifierVolumes around where trees or vegetation is so you can subtract those out from walkable areas to make it really dynamic!

  • @kpm25
    @kpm253 ай бұрын

    How is your hierarchy colored like that?? Maybe I missed something in the last few weeks..

  • @Unity3dCollege

    @Unity3dCollege

    2 ай бұрын

    vHierarchy, it's actually going on sale in the flash deals as part of a bundle for freally cheap. the vtabs and hierarchy are some of my new favorites :)

  • @Zvrra
    @Zvrra3 ай бұрын

    rubs hands together

  • @cgcsw0237
    @cgcsw02373 ай бұрын

    Can I build a navmesh on a spherical mesh using this method?

  • @TidaliCreative

    @TidaliCreative

    3 ай бұрын

    I mean there is always a way, that's why I love programming. Don't ask me on how tho.