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; }