Adjust course angle when rotating view
This commit is contained in:
parent
dd950a95e8
commit
5db750adca
|
@ -22,7 +22,7 @@
|
||||||
"no-console": ["error", {"allow": ["info", "warn", "error"]}],
|
"no-console": ["error", {"allow": ["info", "warn", "error"]}],
|
||||||
"no-multi-str": "off",
|
"no-multi-str": "off",
|
||||||
"func-style": ["error", "expression"],
|
"func-style": ["error", "expression"],
|
||||||
"max-len": ["error", {"code": 80}],
|
"max-len": ["error", {"code": 79}],
|
||||||
"lines-around-comment": ["error", {"allowBlockStart": true}],
|
"lines-around-comment": ["error", {"allowBlockStart": true}],
|
||||||
"jsdoc/require-returns": "off"
|
"jsdoc/require-returns": "off"
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,7 +125,11 @@ const create = target => {
|
||||||
const color = network.lines[course.line].color;
|
const color = network.lines[course.line].color;
|
||||||
const style = getCourseStyle(color);
|
const style = getCourseStyle(color);
|
||||||
|
|
||||||
style.getImage().setRotation(course.angle);
|
style.getImage().setRotation(
|
||||||
|
view.getRotation() +
|
||||||
|
course.angle
|
||||||
|
);
|
||||||
|
|
||||||
ctx.setStyle(style);
|
ctx.setStyle(style);
|
||||||
|
|
||||||
const point = new Point(course.position);
|
const point = new Point(course.position);
|
||||||
|
|
Loading…
Reference in New Issue