From c70bbda10a1249f40464384ba070d335bf4e7cb0 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Fri, 21 Mar 2014 18:16:28 -0700 Subject: [PATCH] kill local voxels on domain change --- interface/src/Application.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 030e3bc6fd..9563cbf3b4 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -3252,6 +3252,9 @@ void Application::domainChanged(const QString& domainHostname) { // reset the particle renderer _particles.clear(); + + // reset the voxels renderer + _voxels.killLocalVoxels(); } void Application::connectedToDomain(const QString& hostname) {