- implemented isolated colouring depending on camera

This commit is contained in:
2025-11-27 11:43:10 +00:00
parent 1ada8d0966
commit f7dbde4511
4 changed files with 35 additions and 20 deletions

View File

@@ -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";
};