3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-30 22:03:31 +02:00

Merge pull request 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;
}