revert a change from previous fixes -- non-dynamic things should have to opt-into being grabbable. dynamic things have to opt-out

This commit is contained in:
Seth Alves 2016-05-12 13:25:54 -07:00
parent 8fecb51dde
commit 009c288745

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