()
| 107 | * Clear all path data. Called on disconnect. |
| 108 | */ |
| 109 | export function clearPathData(): void { |
| 110 | globalStore.state = 0; |
| 111 | globalStore.waypoints = []; |
| 112 | globalStore.currentWaypoint = 0; |
| 113 | globalStore.distanceToGoal = 0; |
| 114 | globalStore.version++; |
| 115 | globalStore.mppiTrajectory = null; |
| 116 | globalStore.mppiVersion++; |
| 117 | globalStore.timestamp = performance.now(); |
| 118 | } |
no outgoing calls
no test coverage detected