disable updateServerPhysicsVariables

This commit is contained in:
Seth Alves 2015-05-06 16:20:16 -07:00
parent 630f1ce9d9
commit ba6f6d19cc

View file

@ -48,6 +48,7 @@ EntityMotionState::~EntityMotionState() {
} }
void EntityMotionState::updateServerPhysicsVariables(uint32_t flags) { void EntityMotionState::updateServerPhysicsVariables(uint32_t flags) {
/*
if (flags & EntityItem::DIRTY_POSITION) { if (flags & EntityItem::DIRTY_POSITION) {
_sentPosition = _entity->getPosition(); _sentPosition = _entity->getPosition();
} }
@ -60,6 +61,7 @@ void EntityMotionState::updateServerPhysicsVariables(uint32_t flags) {
if (flags & EntityItem::DIRTY_ANGULAR_VELOCITY) { if (flags & EntityItem::DIRTY_ANGULAR_VELOCITY) {
_sentAngularVelocity = _entity->getAngularVelocity(); _sentAngularVelocity = _entity->getAngularVelocity();
} }
*/
} }
// virtual // virtual