userMaverickcancel
reporust_rebootcancel

1,726 Commits over 730 Days - 0.10cph!

5 Hours Ago
Fix bad merge for vine tree fix
5 Hours Ago
Merge from main
Today
FIx missing tiles because of too much height and too little cellHeight, causing spans to not have enough range
Yesterday
Change min region size to meters, include oom logs
Yesterday
Fix old tile remaining after failed tile rebuild, which will cause it to exist in native but not in managed, and be ignored by saves
Yesterday
FIx borders not being right now that we rely on only one physics query to decide if we build normal or hires
Yesterday
Fix tile bounds height being too larged when passed to create heightfield
Yesterday
Fix potential exception
Yesterday
Fix navmesh load failing because of invalid tile count, just because it has more than 10000 tiles which is possible
Yesterday
Cleanup unused variables and redundant comments
2 Days Ago
Speed up new navmesh gen by x1.6 - optimize height and alpha terrain sampling to avoid redundant bounds check / deep sea / wrapping / dispatches, have terrain meshing work inplace on the buffers instead of using pooled vertex and index pooled lists - avoid using rust native list, it's not really pooled it just reallocates the internal native array everytime it's unpooled, use custom one (may be overkill, will check later if native array is good enough), bypass pooling these by using [ThreadStatic] buffers - replace cancellation tokens with lightweight tileCancellation classes just wrrapping volatile bool, we just need the object reference to act as a build version to avoid locks and stale results, tokens are massive if allocated per tile and add complexity, and a lot of features go unused
2 Days Ago
Do monument/player build collision check required for hires navmesh, as part as normal geometry collection not another pass
2 Days Ago
Fix rustnav spam " Trying to use new navmesh despite -useNewNavmesh not being set on server boot."
2 Days Ago
Fix log spam " Trying to use new navmesh despite -useNewNavmesh not being set on server boot."
2 Days Ago
Fix new navmesh taking long time to build (regression where it use monument high resolution navmesh on whole map, instead of using low resolution properly)
2 Days Ago
Fix navmesh building using hiRes (monument) resolution for whole world, regression introduced in 145214
2 Days Ago
Optimize "isBuilt" navmesh checks, log time it took to build navmesh async
3 Days Ago
Fix old AIs not fleeing when player is unreachable
3 Days Ago
Fix old AIs not fleeing when the player is unreachable
3 Days Ago
Fix scientists not moving or spawning in multiple locations when new navmesh is enabled, also fix old AIs moving slower
3 Days Ago
Fix old AIs being slower when new navmesh is enabled
4 Days Ago
Fix compile error
4 Days Ago
Fix scientists not spawning in some areas
5 Days Ago
Fix waiting for navmesh check on island being inverted (only trying to spawn scientists when no navmesh is there)
5 Days Ago
Prevent ghostships from checking mainland navmesh
8 Days Ago
Fix scientists not spawning in deep sea
8 Days Ago
Merge from main
13 Days Ago
Fix double navmesh on tropical island 1
13 Days Ago
Fix oilrigs and tutorial islands navmesh not working with new system
13 Days Ago
Merge from main
20 Days Ago
Fix code files affected by the asset subtract
20 Days Ago
Subtract changes to scenes and prefab, as it caused an error in deep sea creation
20 Days Ago
Attempt at also converting DungeonNavmesh, may need more work as it relies on massive bounds and passes the root objects to make the cost not balloon
20 Days Ago
Make "IsBuilding" property behave correctly for MonumentNavmesh wrapping a new navmesh, allowing spawners to delay activating until the navmesh finishes building
20 Days Ago
Remove independant navmesh component from oilrigs, tutorial island, and tropical islands. The old monument navmesh component will dynamically switch to building disconnected new navmesh when off the mainland.
20 Days Ago
Fix incorrect spawn navmesh sampling on tropical islands when using new navmesh
22 Days Ago
Fix Scientist2 not spawning on deep sea islands
22 Days Ago
Fix deep sea islands having no navmesh if ai.move is false when deep sea opens
23 Days Ago
Fix big alloc during nav save/load
23 Days Ago
Merge from main
23 Days Ago
Reduce allocations in navmesh save/load
23 Days Ago
Only validate on load, no need to validate repeatedly
23 Days Ago
Fix bear and chicken not working on tutorial island
34 Days Ago
Add navmesh to tutorial island
35 Days Ago
Merge from new_navmesh_fixes, adds low level logs to help debug crash
35 Days Ago
Merge from main
35 Days Ago
Add -checkTileValid starter param that slows down everything, but can help us narrow down the crash
41 Days Ago
Potential fix for nav error logged during root motion
41 Days Ago
Merge from new_navmesh_fixes, fix wrong marshalling of bool from C++ to csharp, potentially causing navmesh methods to return true instead of false when they fail, fix agent re-warping to the navmesh in worldspace instead of navmesh space after being re-enabled
41 Days Ago
Make sure C++ returned bool are marshalled correctly to csharp (1 byte to 4byte int), could cause very hard to track issues