Trying different hologram location

This commit is contained in:
Shaun Bennett 2016-01-25 04:17:58 -06:00
parent 616be8aea7
commit 6ff7c83d3e
1 changed files with 4 additions and 3 deletions

View File

@ -81,9 +81,10 @@ public class RecreationData
}
}
// Vector mid = loc.toVector().subtract(game.getJudgeSpawn().toVector()).multiply(0.5);
// Location hologramLocation = loc.clone().add(mid).add(0, 2, 0);
_hologram = new Hologram(game.getArcadeManager().getHologramManager(), loc.clone().add(0.5, game.BuildSize + 0.5, 0.5), C.cYellow + player.getName());
Vector mid = loc.toVector().subtract(game.getJudgeSpawn().toVector()).multiply(0.5);
Location hologramLocation = loc.clone().add(mid).add(0, 2, 0);
Location above = loc.clone().add(0.5, game.BuildSize + 0.5, 0.5);
_hologram = new Hologram(game.getArcadeManager().getHologramManager(), hologramLocation, C.cYellow + player.getName());
_hologram.start();
}