| 1123 | } |
| 1124 | |
| 1125 | void PathController::reset() { |
| 1126 | m_startPosition = {}; |
| 1127 | m_targetPosition = {}; |
| 1128 | m_controlFace = {}; |
| 1129 | m_pathFinder = {}; |
| 1130 | m_path = {}; |
| 1131 | m_edgeIndex = 0; |
| 1132 | m_edgeTimer = 0.0; |
| 1133 | } |
| 1134 | |
| 1135 | bool PathController::pathfinding() const { |
| 1136 | return m_path.isNothing(); |
no outgoing calls
no test coverage detected