From c70ade0cc1046ee62b316c606c873e107d6c41a0 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Wed, 29 May 2013 12:14:45 -0700 Subject: [PATCH] temporary hack fix to not discarding voxels --- interface/src/VoxelSystem.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/src/VoxelSystem.cpp b/interface/src/VoxelSystem.cpp index ea8787a902..5e1b72e5c4 100644 --- a/interface/src/VoxelSystem.cpp +++ b/interface/src/VoxelSystem.cpp @@ -887,11 +887,14 @@ bool VoxelSystem::removeOutOfViewOperation(VoxelNode* node, void* extraData) { bool VoxelSystem::isViewChanging() { bool result = false; // assume the best + +/** TEMPORARY HACK ****** // If our viewFrustum has changed since our _lastKnowViewFrustum if (_viewFrustum && !_lastKnowViewFrustum.matches(_viewFrustum)) { result = true; _lastKnowViewFrustum = *_viewFrustum; // save last known } +**/ return result; }