コード例 #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
ファイル: AIController.cs プロジェクト: bazillis/RPG-Test
 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
ファイル: AIController.cs プロジェクト: rune0509sp/RPG_Combat
 private void CycleWaypoint()
 {
     m_CurrentWaypointIndex = m_PatrolPath.GetNextIndex(m_CurrentWaypointIndex);
 }
コード例 #9
0
 private void CycleWaypoint()
 {
     timeScinceGetWaypoint = 0f;
     currentWaypointIndex  = patrolPath.GetNextIndex(currentWaypointIndex);
 }