{"id":31798560,"url":"https://github.com/lajawi/unity-navmesh-better-bake","last_synced_at":"2026-04-15T16:32:01.734Z","repository":{"id":314722243,"uuid":"1056202001","full_name":"lajawi/unity-navmesh-better-bake","owner":"lajawi","description":"Package to enhance Unity's NavMesh Surface baking process by including Terrain Trees","archived":false,"fork":false,"pushed_at":"2025-09-14T09:58:26.000Z","size":71,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-14T11:45:09.153Z","etag":null,"topics":["navmesh","navmeshsurface","unity","unity-3d","unity-ai","unity-navmesh","unity-package"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lajawi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-13T15:47:08.000Z","updated_at":"2025-09-14T09:58:21.000Z","dependencies_parsed_at":"2025-09-14T11:45:13.009Z","dependency_job_id":"a7009ae3-a98a-4231-8fd0-00ed6874e91b","html_url":"https://github.com/lajawi/unity-navmesh-better-bake","commit_stats":null,"previous_names":["lajawi/unity-navmesh-better-bake"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lajawi/unity-navmesh-better-bake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lajawi%2Funity-navmesh-better-bake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lajawi%2Funity-navmesh-better-bake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lajawi%2Funity-navmesh-better-bake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lajawi%2Funity-navmesh-better-bake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lajawi","download_url":"https://codeload.github.com/lajawi/unity-navmesh-better-bake/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lajawi%2Funity-navmesh-better-bake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005428,"owners_count":26083883,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["navmesh","navmeshsurface","unity","unity-3d","unity-ai","unity-navmesh","unity-package"],"created_at":"2025-10-10T21:47:44.545Z","updated_at":"2025-10-10T21:47:47.638Z","avatar_url":"https://github.com/lajawi.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Unity Better NavMesh Bake\n\nA Unity package that enhances the [NavMesh Surface](https://docs.unity3d.com/Packages/com.unity.ai.navigation@2.0/manual/NavMeshSurface.html) baking process. Currently it only adds support for [Terrain](https://docs.unity3d.com/Manual/script-Terrain.html) [Trees](https://docs.unity3d.com/Manual/terrain-Trees-Landing.html).\n\n## Usage\n\n\u003e [!IMPORTANT]\n\u003e You need Unity's [AI Navigation](https://docs.unity3d.com/Packages/com.unity.ai.navigation@2.0/manual/index.html) package. When you install this package, it should depend on it and install it automatically for you.\n\nInstall the package according to the [installation instructions](#installation). Once installed, you can use the extra buttons from the *NavMesh Surface* to use this package to bake.\n\n![Screenshot of the NavMesh Surface component, with the extra buttons.](./Documentation~/images/navmesh-surface-component-with-package.png)\n\n### What this package currently does\n\n- Make real instances of terrain trees for baking (they get removed after baking). These trees support the following components:\n  - LOD Groups, only used when *Use Geometry* is set to *Render Meshes*, takes precedence to just a Mesh Renderer and Mesh Filter on the root object of a tree\n  - Mesh Renderer and Mesh Filter, only used when *Use Geometry* is set to *Render Meshes*, [#Problems that may not be obvious](#mesh-renderer--mesh-filter)\n  - Colliders of any type, can be multiple, mix and matched, only used when *Use Geometry* is set to *Physics Colliders*\n  - NavMesh Modifier\n  - NavMesh Modifier Volume\n\n\u003e [!IMPORTANT]\n\u003e All components above need to be enabled to be used by the NavMesh Surface.\n\n### Problems that may not be obvious\n\n#### Mesh Renderer \u0026 Mesh Filter\n\n\u003e [!IMPORTANT]\n\u003e Both a Mesh Renderer and Mesh Filter need to be on the tree, otherwise the Surface will not recognise it.\n\n## Installation\n\n### Option 1: Package Manager (recommended)\n\nOpen the Package Manager window, click on `Add Package from Git URL ...`, then enter the following:\n\n```\nhttps://github.com/lajawi/unity-navmesh-better-bake.git\n```\n\n\u003e [!TIP]\n\u003e Head to the Unity documentation for help if need be.\n\u003e https://docs.unity3d.com/Manual/upm-ui-giturl.html\n\n### Option 2: Manually Editing `package.json`\n\nAdd the following line to your project's `Packages/manifest.json`:\n\n```json\n\"com.github.lajawi.betternavmeshbake\": \"https://github.com/lajawi/unity-navmesh-better-bake.git\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flajawi%2Funity-navmesh-better-bake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flajawi%2Funity-navmesh-better-bake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flajawi%2Funity-navmesh-better-bake/lists"}