userMaverickcancel
reporust_rebootcancel

1,815 Commits over 761 Days - 0.10cph!

12 Days Ago
Fix compile errors from the merge
12 Days Ago
Merge navpos
12 Days Ago
Fix tiger charging forever at the bottom of vine trees
12 Days Ago
Use dtCorridor for path following, fix some cases where agents get wedged in a navmesh corner while steering
12 Days Ago
Fix TryBindNavmesh not updating the cached navmesh
12 Days Ago
Cache agent navmesh instead of re-resolving it each call (eg independant navmesh vs default navmesh)
12 Days Ago
Fix find closest edge not working (never worked), making scientists not actually favour covers close to walls, fix AIs getting stuck when navmesh tile is rebuilt under their feet / on their path, prevent findPath from the agent position reprojecting when we already have a valid polyref, expose polyrefs in path
13 Days Ago
Fix npcs getting stuck when navmesh tile rebuilds while they are in it or crossing it
13 Days Ago
Fix independant navmesh bounds not using the monument bounds, and always being fixed with the default values from AddComponent, fix AIs spawned before an independant navmesh is built being unable to find it
13 Days Ago
Fix cargo scientists not moving
13 Days Ago
Fix old scientists trying to steer instead of turning instantly
13 Days Ago
Fix Scientist2 on Oilrig crouchwalks upstairs at a weird angle
13 Days Ago
Fix scientists not spawning on cargo, underwater lab and military base
13 Days Ago
Fix scientists not spawning in underwater labs and cargo ships
14 Days Ago
Merge from main
14 Days Ago
More automated tests for croc/wolf/tiger foundation jump/destroy behaviors, fix bug where cancelled/stale tile request would delete the tile after failing
16 Days Ago
Cleanup wolf foundation jump test
16 Days Ago
Add test for wolf leap on foundation, not cleaned up yet
16 Days Ago
Rename navpos to navVector3, as it can also be a direction / delta, delete old navVector3, fix compile errors
16 Days Ago
Fix world space leak in wolf and tiger leaps, fix eqs donut potentially using uninitialized garbage nav nextPosition
16 Days Ago
Initial work to create dedicated navmesh position
34 Days Ago
Do not calculate remaining distance twice
34 Days Ago
Optimize fsm wait for navmesh
34 Days Ago
Improve npcs path following performance, fix npcs sometimes not moving
34 Days Ago
Disambiguate rust nav mesh helpers
34 Days Ago
Merge from main
34 Days Ago
Update artifacts
34 Days Ago
Fix sample radius being insufficient to check if player is on navmesh
34 Days Ago
Fix leftover comment and stale dll
34 Days Ago
Optimize npc movement
35 Days Ago
Also fix allocs and stack overflow in navmesh load, fix potential leak, remove debug.break
35 Days Ago
Fix stack overflow and alloc in navmesh load / save
35 Days Ago
Fix stack overflow in navmesh save, stackallow is not scoped to for loop but actually methods, also use writer.BaseStream.Write instear of writer.Write because the latter copies and allocates in Unity... Also fix potential bug in the way we check for null tiles
35 Days Ago
Double the speed of navmesh generation, fix some loading saves not working, fix some navmesh tiles missing, add logs to troubleshoot OOM issue
35 Days Ago
Merge from main
35 Days Ago
Add build artefacts for all platforms
35 Days Ago
Remove debug.break left by accident
35 Days Ago
Fix tile seams not being perfectly aligned because of quantization
39 Days Ago
Fix bad merge for vine tree fix
39 Days Ago
Merge from main
40 Days Ago
FIx missing tiles because of too much height and too little cellHeight, causing spans to not have enough range
40 Days Ago
Change min region size to meters, include oom logs
40 Days Ago
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
40 Days Ago
FIx borders not being right now that we rely on only one physics query to decide if we build normal or hires
40 Days Ago
Fix tile bounds height being too larged when passed to create heightfield
40 Days Ago
Fix potential exception
40 Days Ago
Fix navmesh load failing because of invalid tile count, just because it has more than 10000 tiles which is possible
40 Days Ago
Cleanup unused variables and redundant comments
41 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
41 Days Ago
Do monument/player build collision check required for hires navmesh, as part as normal geometry collection not another pass