From bdd92bcc55c025400ff8624587d4dd09f1f49493 Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Tue, 27 Jul 2021 19:54:54 +0200
Subject: [PATCH] chore: add surface parcellation to nehuba configs

---
 src/util/pureConstant.service.ts | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/util/pureConstant.service.ts b/src/util/pureConstant.service.ts
index 411066e27..f15f92263 100644
--- a/src/util/pureConstant.service.ts
+++ b/src/util/pureConstant.service.ts
@@ -84,6 +84,9 @@ function getNehubaConfig(space: TSpaceFull) {
     ? {"cutOff":150000 * scale }
     : {"cutOff":200000 * scale,"color":[0.5,0,0,0.15] }
 
+  // enable surface parcellation
+  // otherwise, on segmentation selection, the unselected meshes will also be invisible
+  const surfaceParcellation = space.id === 'minds/core/referencespace/v1.0.0/7f39f7be-445b-47c0-9791-e971c0b6d992'
   return {
     "configName": "",
     "globals": {
@@ -134,7 +137,8 @@ function getNehubaConfig(space: TSpaceFull) {
         "mesh": {
           "backFaceColor": backgrd,
           "removeBasedOnNavigation": true,
-          "flipRemovedOctant": true
+          "flipRemovedOctant": true,
+          surfaceParcellation
         },
         "centerToOrigin": true,
         "drawSubstrates": drawSubstrates,
-- 
GitLab