From 446ca8236f58dadd1c7cbbb208a665075c9dee28 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Wed, 9 Dec 2015 11:25:44 -0800 Subject: [PATCH] disable physics disabler --- interface/src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index eee1ea7226..1a03cad62a 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -2907,7 +2907,7 @@ void Application::update(float deltaTime) { _avatarUpdate->synchronousProcess(); - if (_physicsEnabled) { + if (true || _physicsEnabled) { PerformanceTimer perfTimer("physics"); static VectorOfMotionStates motionStates;