Giter VIP home page Giter VIP logo

dotrecast's Introduction

License: Zlib .NET CodeQL NuGet Version and Downloads count Repo Size Languages Visitors

Screenshot

screenshot

Introduction

  1. DotRecast is a port of C++'s recastnavigation and Java's recast4j to the C# language.
  2. For game development, C# servers, C# project, and Unity3D are supported.
  3. DotRecast consists of Recast and Detour, Crowd, Dynamic, Extras, TileCache, DemoTool, Demo
20230902_160019.mp4

DotRecast.Recast

Recast is state of the art navigation mesh construction toolset for games.

Recast is...

  • ๐Ÿค– Automatic - throw any level geometry at it and you will get a robust navmesh out
  • ๐ŸŽ๏ธ Fast - swift turnaround times for level designers
  • ๐Ÿง˜ Flexible - easily customize the navmesh generation and runtime navigation systems to suit your specific game's needs.

Recast constructs a navmesh through a multi-step rasterization process:

  1. First Recast voxelizes the input triangle mesh by rasterizing the triangles into a multi-layer heightfield.
  2. Voxels in areas where the character would not be able to move are removed by applying simple voxel data filters.
  3. The walkable areas described by the voxel grid are then divided into sets of 2D polygonal regions.
  4. The navigation polygons are generated by triangulating and stitching together the generated 2d polygonal regions.

DotRecast.Detour

Recast is accompanied by Detour, a path-finding and spatial reasoning toolkit. You can use any navigation mesh with Detour, but of course the data generated with Recast fits perfectly.

Detour offers a simple static navmesh data representation which is suitable for many simple cases. It also provides a tiled navigation mesh representation, which allows you to stream of navigation data in and out as the player progresses through the world and regenerate sections of the navmesh data as the world changes.

DotRecast.Recast.Demo

You can find a comprehensive demo project in the DotRecast.Recast.Demo folder. It's a kitchen sink demo showcasing all the functionality of the library. If you are new to Recast & Detour, check out SoloNavMeshBuilder.cs to get started with building navmeshes and TestNavmeshTool.cs to see how Detour can be used to find paths.

Building DotRecast.Recast.Demo

  1. DotRecast.Recast.Demo uses dotnet 8 to build platform specific projects. Download it and make sure it's available on your path, or specify the path to it.
  2. Open a command prompt, point it to a directory and clone DotRecast to it: git clone https://github.com/ikpil/DotRecast.git
  3. Open <DotRecastDir>\DotRecast.sln with Visual Studio 2022 and build DotRecast.Recast.Demo
    • Optionally, you can run using the dotnet run command with DotRecast.Recast.Demo.csproj

Windows

Linux & macOS & Windows

  • Navigate to the DotRecast.Recast.Demo folder and run dotnet run

Running Unit tests

With VS2022

  • In Visual Studio 2022 go to the test menu and press Run All Tests

With CLI

  • in the DotRecast folder open a command prompt and run dotnet test

Integrating with your game or engine

It is recommended to add the source directories DotRecast.Core, DotRecast.Detour.Crowd, DotRecast.Detour.Dynamic, DotRecast.Detour.TitleCache, DotRecast.Detour.Extras and DotRecast.Recast into your own project depending on which parts of the project you need. For example your level building tool could include DotRecast.Core, DotRecast.Recast, and DotRecast.Detour, and your game runtime could just include DotRecast.Detour.

Discuss

License

DotRecast is licensed under ZLib license, see LICENSE.txt for more information.

dotrecast's People

Contributors

ikpil avatar jgkim999 avatar ikpil-1 avatar doprez avatar gabrielmotaalexandre avatar vaibhavwakde52 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.