From 009c2887450833f6c8a45440d3e8b06ccfbd13a4 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Thu, 12 May 2016 13:25:54 -0700 Subject: [PATCH] revert a change from previous fixes -- non-dynamic things should have to opt-into being grabbable. dynamic things have to opt-out --- scripts/system/controllers/handControllerGrab.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/system/controllers/handControllerGrab.js b/scripts/system/controllers/handControllerGrab.js index 0fdaed58f2..ed4ac219c0 100644 --- a/scripts/system/controllers/handControllerGrab.js +++ b/scripts/system/controllers/handControllerGrab.js @@ -739,6 +739,9 @@ function MyController(hand) { }; this.propsArePhysical = function(props) { + if (!props.dynamic) { + return false; + } var isPhysical = (props.shapeType && props.shapeType != 'none'); return isPhysical; }