volleyballsimtypes 0.0.403 → 0.0.404
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -23,6 +23,10 @@ var CourtPosition;
|
|
|
23
23
|
CourtPosition[CourtPosition["LEFT_BACK"] = 5] = "LEFT_BACK";
|
|
24
24
|
CourtPosition[CourtPosition["MIDDLE_BACK"] = 6] = "MIDDLE_BACK";
|
|
25
25
|
CourtPosition[CourtPosition["RIGHT_BACK"] = 1] = "RIGHT_BACK";
|
|
26
|
+
// The off-court member of the libero pair: the second libero held in reserve, or the starting libero
|
|
27
|
+
// once the second libero is swapped in for a set. Distinct from NOT_IN_COURT so it is never counted as
|
|
28
|
+
// one of the (max 6) bench subs.
|
|
29
|
+
CourtPosition[CourtPosition["RESERVE_LIBERO"] = 8] = "RESERVE_LIBERO";
|
|
26
30
|
})(CourtPosition || (exports.CourtPosition = CourtPosition = {}));
|
|
27
31
|
var CourtTarget;
|
|
28
32
|
(function (CourtTarget) {
|
|
@@ -14,6 +14,10 @@ export var CourtPosition;
|
|
|
14
14
|
CourtPosition[CourtPosition["LEFT_BACK"] = 5] = "LEFT_BACK";
|
|
15
15
|
CourtPosition[CourtPosition["MIDDLE_BACK"] = 6] = "MIDDLE_BACK";
|
|
16
16
|
CourtPosition[CourtPosition["RIGHT_BACK"] = 1] = "RIGHT_BACK";
|
|
17
|
+
// The off-court member of the libero pair: the second libero held in reserve, or the starting libero
|
|
18
|
+
// once the second libero is swapped in for a set. Distinct from NOT_IN_COURT so it is never counted as
|
|
19
|
+
// one of the (max 6) bench subs.
|
|
20
|
+
CourtPosition[CourtPosition["RESERVE_LIBERO"] = 8] = "RESERVE_LIBERO";
|
|
17
21
|
})(CourtPosition || (CourtPosition = {}));
|
|
18
22
|
export var CourtTarget;
|
|
19
23
|
(function (CourtTarget) {
|