mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Add waypoint debug layers to the new map.
This is now feature complete with the exception of the ruler, none of which seem to work with react. Someone that understands JS packaging better than I do (which is a very low bar) will need to have a look. https://github.com/dcs-liberation/dcs_liberation/issues/2039
This commit is contained in:
@@ -76,6 +76,8 @@ export const {
|
||||
} = flightsSlice.actions;
|
||||
|
||||
export const selectFlights = (state: RootState) => state.flights;
|
||||
export const selectSelectedFlightId = (state: RootState) =>
|
||||
state.flights.selected;
|
||||
export const selectSelectedFlight = (state: RootState) => {
|
||||
const id = state.flights.selected;
|
||||
return id ? state.flights.flights[id] : null;
|
||||
|
||||
Reference in New Issue
Block a user