INTERNAL_CALL_Move() private method

private INTERNAL_CALL_Move ( NavMeshAgent self, Vector3 &offset ) : void
self NavMeshAgent
offset Vector3
return void
コード例 #1
0
 /// <summary>
 ///   <para>Apply relative movement to current position.</para>
 /// </summary>
 /// <param name="offset">The relative movement vector.</param>
 public void Move(Vector3 offset)
 {
     NavMeshAgent.INTERNAL_CALL_Move(this, ref offset);
 }