From c462bda86cb221aa7b8e5329f93367a42399d3d7 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Tue, 8 Dec 2015 14:01:18 -0800 Subject: [PATCH] disable physics when moving to a new domain --- interface/src/Application.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 4a97fd6275..eee1ea7226 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -3788,6 +3788,8 @@ void Application::domainChanged(const QString& domainHostname) { updateWindowTitle(); clearDomainOctreeDetails(); _domainConnectionRefusals.clear(); + // disable physics until we have enough information about our new location to not cause craziness. + _physicsEnabled = false; } void Application::handleDomainConnectionDeniedPacket(QSharedPointer message) {