Select detected ball colors for Shot Lab
All checks were successful
Tests / Tests (pull_request) Successful in 33s
All checks were successful
Tests / Tests (pull_request) Successful in 33s
This commit is contained in:
@@ -6745,6 +6745,10 @@ export type GetTableStateQuery = {
|
|||||||
getTableState: {
|
getTableState: {
|
||||||
__typename?: "TableStateGQL";
|
__typename?: "TableStateGQL";
|
||||||
identifierToPosition: Array<Array<number>>;
|
identifierToPosition: Array<Array<number>>;
|
||||||
|
identifierToColor: Array<{
|
||||||
|
__typename?: "RGBColorGQL";
|
||||||
|
hex: string;
|
||||||
|
} | null>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -6761,6 +6765,10 @@ export type GetLiveTableStateQuery = {
|
|||||||
tableState: {
|
tableState: {
|
||||||
__typename?: "TableStateGQL";
|
__typename?: "TableStateGQL";
|
||||||
identifierToPosition: Array<Array<number>>;
|
identifierToPosition: Array<Array<number>>;
|
||||||
|
identifierToColor: Array<{
|
||||||
|
__typename?: "RGBColorGQL";
|
||||||
|
hex: string;
|
||||||
|
} | null>;
|
||||||
homography?: {
|
homography?: {
|
||||||
__typename?: "HomographyInfoGQL";
|
__typename?: "HomographyInfoGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -14426,6 +14434,9 @@ export const GetTableStateDocument = gql`
|
|||||||
useHomography: $useHomography
|
useHomography: $useHomography
|
||||||
) {
|
) {
|
||||||
identifierToPosition
|
identifierToPosition
|
||||||
|
identifierToColor {
|
||||||
|
hex
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
@@ -14504,6 +14515,9 @@ export const GetLiveTableStateDocument = gql`
|
|||||||
frameIndex
|
frameIndex
|
||||||
tableState {
|
tableState {
|
||||||
identifierToPosition
|
identifierToPosition
|
||||||
|
identifierToColor {
|
||||||
|
hex
|
||||||
|
}
|
||||||
homography {
|
homography {
|
||||||
...HomographyInfo
|
...HomographyInfo
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ query GetTableState(
|
|||||||
useHomography: $useHomography
|
useHomography: $useHomography
|
||||||
) {
|
) {
|
||||||
identifierToPosition
|
identifierToPosition
|
||||||
|
identifierToColor {
|
||||||
|
hex
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -18,6 +21,9 @@ query GetLiveTableState($videoId: Int!) {
|
|||||||
frameIndex
|
frameIndex
|
||||||
tableState {
|
tableState {
|
||||||
identifierToPosition
|
identifierToPosition
|
||||||
|
identifierToColor {
|
||||||
|
hex
|
||||||
|
}
|
||||||
homography {
|
homography {
|
||||||
...HomographyInfo
|
...HomographyInfo
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user