Added Recording Player to Replay (many more details)

This commit is contained in:
Marius Metzger
2015-01-17 19:11:29 +01:00
parent 69a196fe74
commit 197d7c19a8
7 changed files with 435 additions and 104 deletions

View File

@@ -39,13 +39,13 @@ public class CameraEntity extends Entity {
mc.thePlayer.rotationYaw = ReplayHandler.getCameraEntity().rotationYaw;
//removes water/suffocation/shadow overlays in screen
//mc.thePlayer.posX = 0;
//mc.thePlayer.posY = 500;
//mc.thePlayer.posZ = 0;
mc.thePlayer.posX = 0;
mc.thePlayer.posY = 500;
mc.thePlayer.posZ = 0;
mc.thePlayer.posX = ReplayHandler.getCameraEntity().posX;
mc.thePlayer.posY = ReplayHandler.getCameraEntity().posY;
mc.thePlayer.posZ = ReplayHandler.getCameraEntity().posZ;
//mc.thePlayer.posX = ReplayHandler.getCameraEntity().posX;
//mc.thePlayer.posY = ReplayHandler.getCameraEntity().posY;
//mc.thePlayer.posZ = ReplayHandler.getCameraEntity().posZ;
}
if(direction == null || motion < 0.1) {