Added WarpOnDestintionChange option to NetworkedNavMeshAgent

This commit is contained in:
Albin Corén 2018-03-29 01:28:45 +02:00
parent 2442eab0cc
commit 5d8c1ece0b

View File

@ -14,6 +14,7 @@ namespace MLAPI.MonoBehaviours.Prototyping
//TODO rephrase.
[Tooltip("Everytime a correction packet is recieved. This is the percentage (between 0 & 1) that we will move towards the goal.")]
public float DriftCorrectionPercentage = 0.1f;
public bool WarpOnDestinationChange = false;
private static byte[] stateUpdateBuffer = new byte[36];
private static byte[] correctionBuffer = new byte[24];
@ -133,7 +134,10 @@ namespace MLAPI.MonoBehaviours.Prototyping
agent.SetDestination(destination);
agent.velocity = velocity;
agent.Warp(position);
if (WarpOnDestinationChange)
agent.Warp(position);
else
agent.Warp(Vector3.Lerp(transform.position, position, DriftCorrectionPercentage));
}
}
}