示例#1
0
 private void CycleWaypoint()
 {
     waypointIndex = patrolPath.GetNextIndex(waypointIndex);
 }
示例#2
0
 private void CycleWaypoint()
 {
     currentWaypointIndex = patrolPath.GetNextIndex(currentWaypointIndex);
 }
示例#3
0
 private void CycleWaypoint()    //Guckt nach ob es einen nächsten Wegpunkt gibt und welcher dieser ist (Index)
 {
     currentWaypointIndex = patrolPath.GetNextIndex(currentWaypointIndex);
 }
示例#4
0
 private void CycleWaypoint()
 {
     timeSinceArrivalToWaypoint = 0f;
     waypointIndex = patrolPath.GetNextIndex(waypointIndex);
 }
示例#5
0
 private void CycleWayPoint()
 {
     _currentWayPointIndex = _patrolPath.GetNextIndex(_currentWayPointIndex);
 }
示例#6
0
 private void CycleWayPoint()
 {
     timeAtCurrentWayPoint = 0;
     currentWaypointIndex  = patrolPath.GetNextIndex(currentWaypointIndex);
 }
示例#7
0
 private void CycleWaypoint()
 {
     timeSinceArrivedAtWaypoint = 0;
     currentWaypointIndex       = patrolPath.GetNextIndex(currentWaypointIndex);
 }
示例#8
0
 private void CycleWaypoint()
 {
     m_CurrentWaypointIndex = m_PatrolPath.GetNextIndex(m_CurrentWaypointIndex);
 }
示例#9
0
 private void CycleWaypoint()
 {
     timeScinceGetWaypoint = 0f;
     currentWaypointIndex  = patrolPath.GetNextIndex(currentWaypointIndex);
 }