userMaverickcancel

1,766 Commits over 669 Days - 0.11cph!

4 Days Ago
FIx old animals always fleeing, SetNavMeshEnabled was turning RustNavmeshAgent on but not the internal NavmeshAgent which defaults to disabled
4 Days Ago
Disable navmesh agent until it's used, this prevents unity complaining they are not on navmesh on spawn (which can happen with ai.move)
6 Days Ago
Add ai.abortNavEnabledWhenOutOfNav convar, disabled by default, use in combination with ai.logIssues to help isolating npcs causing the log spam
6 Days Ago
Disable avoidance on navmeshagents, potential fix for scientists stuck in barrels
6 Days Ago
Merge from subtract_new_navmesh
6 Days Ago
Merge from main
7 Days Ago
Merge from main
7 Days Ago
Subtract new navmesh
7 Days Ago
Gate ghostship unity nav gen behind ConVar.AI.useUnityNavmesh
7 Days Ago
Make entityComponent.baseEntity work in OnEnable
7 Days Ago
Fix ghostship scientists not moving (after fixing agent too far from navmesh spam)
7 Days Ago
Readd navmesh agent to realmed remove
7 Days Ago
Make TryGetAgent return null if agent is not on navmesh to prevent unity warnings
7 Days Ago
Add a unity NavmeshAgent component to all prefabs with RustNavmeshAgent and copy its settings, this is because AddComponent on NavmeshAgent causes it to use default params and log warnings
7 Days Ago
Fix race condition in editor causing WakeAIZ to try to use BaseEntity.Query.Server before it's set (use InitShared callback instead of Awake)
7 Days Ago
Fix new scientists hovering slightly above ghostship floor
8 Days Ago
Potential fix for "Failed to create agent because it is not close enough to the navmesh" spam
8 Days Ago
Fix NRE in NPCNetworking (subscribers count)
10 Days Ago
Fix typo that would cause scientists to not rotate properly towards their target
10 Days Ago
Handles cases in NPCNetowkring where SendNetworkUpdate could be sent multiple times a frame, make sure SendNetworkUpdate is only called once
10 Days Ago
Add more profile markers to NPCAnimController.Update to narrow down allocations when we repro
10 Days Ago
Budget NPCNetworking with fsm, senses etc
10 Days Ago
Only send entity update when new state is different from old state in NPCNetworking
10 Days Ago
Cache agent from TryGetAgent
10 Days Ago
Cache isScientistNPC and sense component in rustNavMeshAgent enable
10 Days Ago
Add C# bindings for recast corridor
11 Days Ago
Use static list ticked through ServerMgr for npc networking instead of unity update
11 Days Ago
Merge from main
11 Days Ago
Convert stragglers that still used navmesh agent: dungeon scarecrows and frankenstein pet
11 Days Ago
Add script in Tools/NavMesh to find all prefabs using legacy navigation components (agents, obstacles, volumes, monument navmesh)
11 Days Ago
Delete old path following component (the one used by new AIs, replaced by RustNavMeshAgent, old AIs still use their navigator)
11 Days Ago
Use static list ticked through ServerMgr for navmesh agents instead of unity update
12 Days Ago
Potential fix for zombie NRE on _agent == null in tests
12 Days Ago
Potential fix for zombie NRE on _agent == null in tests
12 Days Ago
Fix zombies breaking automated tests
12 Days Ago
Fix zombies breaking automated tests
12 Days Ago
Cherry pick tutorial bear and unused shark fix from ai_recast_integration
12 Days Ago
Fix tutorial bear and unused sharks causing errors with new navmesh
12 Days Ago
Merge from ai_recast_integration, enable with -useNewNavmesh on server boot, visualize with rustnav.draw command
12 Days Ago
Merge from main
13 Days Ago
Fix recast save being called in unity mode (even though it early outs, it logs a warning)
13 Days Ago
Unify naming conventions, everything is now called RustNav
13 Days Ago
Update error messages to mention the command line argument rather than the convar
13 Days Ago
Disable new navmesh by default, use command line argument "-useNewNavmesh" instead of convar to make it impossible to change at runtime (as it's not supported)
13 Days Ago
Do not build the unity navmesh when in recast mode
13 Days Ago
Assert inside all recast methods that the useUnityNavmesh is false
13 Days Ago
Make useUnityNavmesh convar only work on server start, do not build recast navmesh if it's set
13 Days Ago
Remove unused WS methods, fixed more usages of subNavmesh in unity mode
13 Days Ago
Fix cases where rotation could still be using recast in unity mode
13 Days Ago
Fix other cases where it was possible to fallback to recast code path when agent is null but useUnityNavmesh is true