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