• Stars
    star
    467
  • Rank 90,907 (Top 2 %)
  • Language
    C#
  • Created almost 6 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A demo implementation of Unity Entity Component System with NavMesh

Unity ECS with navmesh and MapBox

A demo implementation of Unity Entity Component System with NavMesh.

I'm getting around 40-50 FPS with 100,000 entities traversing the navmesh.

"100000 Navmesh Agents, MapBox SDK

Requires Unity version 2018.1 or newer to run. Scripting Runtime Version has to be set to .NET 4.0 and the ECS packages installed via the package manager.

Path Finding Usage

The navmesh queries are jobified which means that it will try run on all cores. The main script is the NavMeshQuerySystem.cs. To use it in your project, just include that file. There are 3 methods to call when using the NavMeshQuery class:

void RegisterPathResolvedCallback(SuccessQueryDelegate callback) is used to register the path success handler.

void RegisterPathFailedCallback(FailedQueryDelegate callback) is used to register the path failed handler.

void RequestPath (int id, Vector3 from, Vector3 to, int areaMask) is used to query the navmesh. The id field is for you to set. In this example project the ID is set to entity ID to determine which result belongs to which entity.

void PurgeCache () is used to purge the navmesh cache.

Upon successful query, all registered success callbacks will be called with the id of the request and the Vector3[] path. On failure, all registered failure callbacks will be called with the id and the PathfindingFailedReason enum.

Static counterparts of the methods can also be called. This enables monobehaviours and other classes to query the navmesh without the needing injection via the ECS system:

static void RegisterPathResolvedCallbackStatic (SuccessQueryDelegate callback)

static void RegisterPathFailedCallbackStatic (FailedQueryDelegate callback)

static void RequestPathStatic (int id, Vector3 from, Vector3 to, int areaMask)

static void PurgeCache ()

NavMeshQuerySystem Settings

There's a few settings on the NavMeshQuerySystem that you can tweak to your needs:

int MaxQueries Maximum queries processed per frame. Default is 256.

int MaxPathSize Maximum path size of the query process. This value will autogrow according to the complexity of your map. Default is 1024.

int MaxIterations Maximum iterations of the pathfinding process. Default is 1024.

bool UseCache Whether the NavMeshQuery system will cache the results. Default is false.

int MaxMapWidth Maximum map width. This is used to calculate the cache key. Default is 10000.

Apart from that you can access these properties to see the current status of the system:

int PendingCount How many pending queries are awaiting to be processed.

int CachedCount How many paths are currently cached.

NavAgent Usage

If you want to use the built in NavAgent Component, you can just add that to your existing archetype. This will allow you to set the entity's destination via the void SetDestination (Entity entity, NavAgent agent, Vector3 destination) method. Calling this will request a path from the NavMesh and move the agent once the path has been resolved. Alternatively the static void SetDestinationStatic (Entity entity, NavAgent agent, Vector3 destination) is also available.

There are a few properties to set on an NavAgent component:

  1. Stopping Distance: The distance from the target the agent will auto stop
  2. Acceleration: The agent acceleration
  3. Move Speed: The agent max move speed in unity units per second
  4. Rotation Speed: The agent rotation speed
  5. Agent Area Mask: The NavMesh area mask the agent is allowed to traverse. Set -1 if unsure.
  6. Agent Avoidance Diameter: Diameter of the agent for local avoidance. Set to 0 to disable local avoidance.

You can also have your own Position and Rotation component on the agent. To sync the position and rotation component, be sure to add a combination of these components according to your needs:

  1. SyncPositionToNavAgent: This will copy the Position Component's Value to the NavAgent prior movement.
  2. SyncPositionFromNavAgent: This will copy the rotation of the NavAgent to the Position Component after movement.
  3. SyncRotationToNavAgent: This will copy the Rotation Component's Value to the NavAgent prior movement.
  4. SyncRotationFromNavAgent: This will copy the rotation of the NavAgent to the Rotation Component after movement.

An example NavAgent archetype would have these components:

var agent = Getmanager ().CreateArchetype (
    typeof (NavAgent),
    typeof (Position),                 // optional
    typeof (Rotation),                 // optional
    typeof (SyncPositionToNavAgent),   // optional
    typeof (SyncRotationToNavAgent),   // optional
    typeof (SyncPositionFromNavAgent), // optional
    typeof (SyncRotationFromNavAgent), // optional
    typeof (TransformMatrix)           // optional for instanced mesh rendering
);

License

Copyright 2018 Zulfa Juniadi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

TownGenerator

Medieval Town Generator for Unity
C#
96
star
2

laravel-base

Takes out the boredom of boiler plating code and provides sensible defaults to jump start Laravel
PHP
30
star
3

isometric-land-generator

C#
30
star
4

unity-ecs-system-debugger

A System Runtime Debugger for Unity ECS
C#
26
star
5

jadual-sekolah

Source Code for JadualKu.com
PHP
22
star
6

sampleapi

Sample API running on Laravel 5.2
PHP
14
star
7

PHP-REST-Server

Plug and Play REST Server
PHP
11
star
8

mybanjirinfo

My Banjir Info
JavaScript
7
star
9

Documentor

CSS
6
star
10

laravel-watch

Watches your Laravel project and reloads the browser on changes
PHP
5
star
11

SarahJS

Reactive Javascript MVC Framework
JavaScript
4
star
12

angular-realtime-examples

Implementation of different realtime technologies in AngularJS that covers short polling, long polling, server-sent events and websockets
HTML
3
star
13

WhatsApp-API

PHP
3
star
14

eleforms

An elephant never forgets!
HTML
3
star
15

photoalbum-api

A Sample Photo Album with API. Coded in Laravel.
PHP
3
star
16

laravel-example

Laravel Contact List Example
PHP
2
star
17

w2w-2014

Entry for JomWeb W2W 2014
JavaScript
2
star
18

ng-sockjs

AngularJS module for SockJS. Enables auto-reconnect features, auto serialization to JSON, and other improvements to SockJS native client.
JavaScript
2
star
19

phpmeetup

PHP
2
star
20

profilekerja

Profil Kerja untuk Skills Malaysia
PHP
2
star
21

assetsbuddy

A PHP class to minify and merge your assets. Supports JS, CSS and Client-side Templates.
PHP
2
star
22

castmycode-agent

JavaScript
2
star
23

youdio

Scrapes YouTube channels, rips the audio, then saves into S3. Backend for the [quliyyah app](http://quliyyah.com).
JavaScript
2
star
24

riverlevel

Malaysian River Levels
PHP
1
star
25

tinyrest

RESTful Server in 2 lines
PHP
1
star
26

laravel-watch-less

Watches LESS files and their dependencies. Recompiles on changes and reloads the users browser.
1
star
27

Todolist

Simple todo list to show meteorjs functionality
JavaScript
1
star
28

fitbit-api-php-example

Example PHP Implementation of Fitbit OAuth Authentication using PHP
PHP
1
star
29

Web-Developer-Buddy

Reload browser on save. Compiles LESS automatically.
JavaScript
1
star
30

checkins

A sample ionic project for M@gic Training
JavaScript
1
star