diff --git a/package.json b/package.json index c20bebfb9fab1116be01b4c09b23a2ab50fa7d5e..daf8dcacace21d8babe40851627d1055e5aa1050 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "aframe-input-mapping-component": "https://github.com/mozillareality/aframe-input-mapping-component#hubs/master", "aframe-motion-capture-components": "https://github.com/mozillareality/aframe-motion-capture-components#1ca616fa67b627e447b23b35a09da175d8387668", "aframe-physics-extras": "^0.1.3", - "aframe-physics-system": "github:infinitelee/aframe-physics-system#hubs/master", + "aframe-physics-system": "github:donmccurdy/aframe-physics-system", "aframe-rounded": "^1.0.3", "aframe-slice9-component": "^1.0.0", "aframe-teleport-controls": "https://github.com/mozillareality/aframe-teleport-controls#hubs/master", diff --git a/src/components/super-networked-interactable.js b/src/components/super-networked-interactable.js index 903302562341289cb972515c3ea9030eec5979fd..418b8e50f9b6d5b8f3eb7b89f4547e4dd23aee47 100644 --- a/src/components/super-networked-interactable.js +++ b/src/components/super-networked-interactable.js @@ -18,7 +18,7 @@ AFRAME.registerComponent("super-networked-interactable", { NAF.utils.getNetworkedEntity(this.el).then(networkedEl => { this.networkedEl = networkedEl; if (!NAF.utils.isMine(networkedEl)) { - this.el.setAttribute("body", { type: "dynamic", mass: 0 }); + this.el.setAttribute("body", { type: "static", mass: 0 }); } else { this.counter.register(networkedEl); } @@ -51,7 +51,7 @@ AFRAME.registerComponent("super-networked-interactable", { this.hand = e.detail.hand; if (this.networkedEl && !NAF.utils.isMine(this.networkedEl)) { if (NAF.utils.takeOwnership(this.networkedEl)) { - this.el.setAttribute("body", { mass: this.data.mass }); + this.el.setAttribute("body", { type: "dynamic", mass: this.data.mass }); this.counter.register(this.networkedEl); } else { this.el.emit("grab-end", { hand: this.hand }); @@ -61,7 +61,7 @@ AFRAME.registerComponent("super-networked-interactable", { }, _onOwnershipLost: function() { - this.el.setAttribute("body", { mass: 0 }); + this.el.setAttribute("body", { type: "static", mass: 0 }); this.el.emit("grab-end", { hand: this.hand }); this.hand = null; this.counter.deregister(this.el); diff --git a/yarn.lock b/yarn.lock index 86387c5f8ee357b53924ffac3acc92c4bc2664bc..80a468f8b40315e84b10ab78493449036dfd8c70 100644 --- a/yarn.lock +++ b/yarn.lock @@ -182,9 +182,9 @@ aframe-physics-extras@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/aframe-physics-extras/-/aframe-physics-extras-0.1.3.tgz#803e2164fb96c0a80f2d1a81458f3277f262b130" -"aframe-physics-system@github:infinitelee/aframe-physics-system#hubs/master": - version "3.1.1" - resolved "https://codeload.github.com/infinitelee/aframe-physics-system/tar.gz/80a722ddc9496e4fc867fb3662f61b389d0fd4ca" +"aframe-physics-system@github:donmccurdy/aframe-physics-system": + version "3.1.2" + resolved "https://codeload.github.com/donmccurdy/aframe-physics-system/tar.gz/c142a301e3ce76f88bab817c89daa5b3d4d97815" dependencies: browserify "^14.3.0" budo "^10.0.3"