Compare commits

..

No commits in common. "4f64f045d37b5cada6b5c2fced9d4a6c6e9d70e1" and "ef137dc9987ad005cd2c6189ac3602a6801f60ac" have entirely different histories.

View File

@ -517,8 +517,6 @@ function moveAsLowLevelMoves({ move, nextMove, startingPos, numProgessions }: {
kind: PositionKind.Circle,
which: startPos.which,
facing: startPos.which.facingAcross(),
setOffset: startPos.setOffset,
lineOffset: startPos.lineOffset,
}
return combine([{
@ -1862,24 +1860,6 @@ function moveAsLowLevelMoves({ move, nextMove, startingPos, numProgessions }: {
});
}
case "pass by":
const passByShoulder = move.parameters.shoulder ? Hand.Left : Hand.Right;
return handlePairedMove(move.parameters.who, ({startPos, around, withPos}) => {
return combine([{
beats: move.beats,
// TODO Is pass by always a swap?
endPosition: withPos,
movementPattern: {
kind: SemanticAnimationKind.PassBy,
around,
facing: "Forward",
otherPath: "Swap",
side: passByShoulder,
withHands: false,
}
}], startPos);
});
case "pass through":
if (move.parameters.dir === "left diagonal" || move.parameters.dir === "right diagonal") {
// TODO There's logic for this below, but unsure it's right.