Fixed position issues on entry arrows.

#implement #story[1266] #fix
This commit is contained in:
Calum
2017-09-14 14:21:04 +12:00
parent 391bd33548
commit 62a7e2b8fa
4 changed files with 46 additions and 45 deletions
@@ -590,7 +590,7 @@ public class GameView3D {
new Scale(1, lastLocation.distance(location) / 5, 1)
);
trail.getChildren().add(segment);
if (trail.getChildren().size() > 100) {
if (trail.getChildren().size() > 50) {
trail.getChildren().remove(0);
}
lastLocation = location;