mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
Arrows now rendered in correct orientation but rounding arc sometimes inverted.
#implement #story[1118]
This commit is contained in:
@@ -765,10 +765,11 @@ public class GameView extends Pane {
|
||||
for (Mark mark : compoundMark.getMarks()) {
|
||||
markerObjects.get(mark).showNextExitArrow();
|
||||
}
|
||||
CompoundMark nextMark = course.get(legNumber);
|
||||
System.out.println("nextMark = " + nextMark);
|
||||
for (Mark mark : nextMark.getMarks()) {
|
||||
markerObjects.get(mark).showNextEnterArrow();
|
||||
if (legNumber < course.size()) {
|
||||
CompoundMark nextMark = course.get(legNumber);
|
||||
for (Mark mark : nextMark.getMarks()) {
|
||||
markerObjects.get(mark).showNextEnterArrow();
|
||||
}
|
||||
}
|
||||
if (legNumber - 2 >= 0) {
|
||||
CompoundMark lastMark = course.get(Math.max(0, legNumber - 2));
|
||||
|
||||
Reference in New Issue
Block a user