Removed unused physics code

This commit is contained in:
Jeremiah Billmann
2013-07-09 21:32:22 -04:00
parent cd0a076424
commit faf5434d23
3 changed files with 4 additions and 25 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ $(function () {
GarageServerIO.initializeGarageServer('http://garageserver_io.jbillmann.c9.io', {
logging: true,
onUpdatePlayerPhysics: onUpdatePlayerPhysics,
onUpdatePlayerPhysics: getNewPlayerState,
onInterpolation: function (id, previousState, targetState, amount) {
var interpolationState = {};
interpolationState.x = (previousState.x + amount * (targetState.x - previousState.x));