Adjust course angle when rotating view

このコミットが含まれているのは:
Mattéo Delabre 2020-07-26 21:03:41 +02:00
コミット 5db750adca
署名者: matteo
GPGキーID: AE3FBD02DC583ABB
2個のファイルの変更6行の追加2行の削除

ファイルの表示

@ -22,7 +22,7 @@
"no-console": ["error", {"allow": ["info", "warn", "error"]}],
"no-multi-str": "off",
"func-style": ["error", "expression"],
"max-len": ["error", {"code": 80}],
"max-len": ["error", {"code": 79}],
"lines-around-comment": ["error", {"allowBlockStart": true}],
"jsdoc/require-returns": "off"
}

ファイルの表示

@ -125,7 +125,11 @@ const create = target => {
const color = network.lines[course.line].color;
const style = getCourseStyle(color);
style.getImage().setRotation(course.angle);
style.getImage().setRotation(
view.getRotation() +
course.angle
);
ctx.setStyle(style);
const point = new Point(course.position);