From 4e9557dc492490dd3ac3fa587229df642e6a99ae Mon Sep 17 00:00:00 2001 From: jgkim Date: Thu, 22 Jun 2023 06:31:56 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9E=98=EB=AA=BB=EB=90=9C=20=EC=A3=BC?= =?UTF-8?q?=EC=84=9D=20=EC=9C=84=EC=B9=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/DotRecast.Detour.Crowd/DtCrowdAgentParams.cs | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/DotRecast.Detour.Crowd/DtCrowdAgentParams.cs b/src/DotRecast.Detour.Crowd/DtCrowdAgentParams.cs index 95a9919..010d987 100644 --- a/src/DotRecast.Detour.Crowd/DtCrowdAgentParams.cs +++ b/src/DotRecast.Detour.Crowd/DtCrowdAgentParams.cs @@ -18,32 +18,30 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. */ -using System; - namespace DotRecast.Detour.Crowd { /// Configuration parameters for a crowd agent. /// @ingroup crowd public class DtCrowdAgentParams { + /// < Agent radius. [Limit: >= 0] public float radius; - /// < Agent radius. [Limit: >= 0] + /// < Agent height. [Limit: > 0] public float height; - /// < Agent height. [Limit: > 0] + /// < Maximum allowed acceleration. [Limit: >= 0] public float maxAcceleration; - /// < Maximum allowed acceleration. [Limit: >= 0] - public float maxSpeed; - /// < Maximum allowed speed. [Limit: >= 0] + public float maxSpeed; + /// Defines how close a collision element must be before it is considered for steering behaviors. [Limits: > 0] public float collisionQueryRange; - public float pathOptimizationRange; - /// < The path visibility optimization range. [Limit: > 0] + public float pathOptimizationRange; + /// How aggresive the agent manager should be at avoiding collisions with this agent. [Limit: >= 0] public float separationWeight;