- implemented isolated colouring depending on camera
This commit is contained in:
@@ -97,10 +97,15 @@ export type OptionalBOF2LaneIDs = {
|
||||
};
|
||||
|
||||
export type CameraFeedState = {
|
||||
cameraFeedID: "A" | "B" | "C" | null;
|
||||
cameraFeedID: "A" | "B" | "C";
|
||||
paintedCells: {
|
||||
A: Map<string, PaintedCell>;
|
||||
B: Map<string, PaintedCell>;
|
||||
C: Map<string, PaintedCell>;
|
||||
};
|
||||
};
|
||||
|
||||
export type CameraFeedAction = {
|
||||
type: string;
|
||||
payload: "A" | "B" | "C" | null;
|
||||
payload: "A" | "B" | "C";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user