Pathfinding.RVO.Sampled.Agent.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
		public void Update () {
			velocity = newVelocity;

			prevSmoothPos = smoothPos;

			//Note the case P/p
			//position = Position;
			position = prevSmoothPos;

			position = position + velocity * simulator.DeltaTime;
			Position = position;
		}