| 24 | } |
| 25 | |
| 26 | bool NavCrowd::Init(float maxAgentRadius, int32 maxAgents, NavMesh* navMesh) |
| 27 | { |
| 28 | NavMeshRuntime* navMeshRuntime = navMesh ? navMesh->GetRuntime() : NavMeshRuntime::Get(); |
| 29 | return Init(maxAgentRadius, maxAgents, navMeshRuntime); |
| 30 | } |
| 31 | |
| 32 | bool NavCrowd::Init(const NavAgentProperties& agentProperties, int32 maxAgents) |
| 33 | { |
nothing calls this directly
no test coverage detected