Merge pull request #7876 from sethalves/fix-grab-fixes

fix grab-fixes
This commit is contained in:
Brad Hefta-Gaub 2016-05-13 15:26:31 -07:00
commit 987b3483a8

View file

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