first attempt of implmenting asm style box2d engine

This commit is contained in:
logsol 2014-06-15 01:36:02 +02:00
parent ebf167107a
commit cca3a258ba
12 changed files with 12255 additions and 10876 deletions

View file

@ -135,6 +135,12 @@ function (Parent, Box2D, PhysicsEngine, ViewManager, PlayerController, Nc, reque
body.SetAngularVelocity(update.av);
}
}
if(Settings.USE_ASM) {
if(body.GetNext() == body) {
break;
}
}
} while (body = body.GetNext());