Skip to content
Snippets Groups Projects
Commit 1a7e493f authored by joni's avatar joni
Browse files

Create auto-scale-cannon-physics-body component.

parent 4c31c70a
No related branches found
No related tags found
No related merge requests found
function almostEquals(u, v, eps) {
return Math.abs(u.x - v.x) < eps && Math.abs(u.y - v.y) < eps && Math.abs(u.z - v.z) < eps;
}
function debounce(fn, delay) {
let timer = null;
return function() {
const args = arguments;
clearTimeout(timer);
timer = setTimeout(() => {
fn.apply(this, args);
}, delay);
};
}
AFRAME.registerComponent("auto-scale-cannon-physics-body", {
dependencies: ["body"],
init: function() {
this.body = this.el.components["body"];
this.prevScale = this.el.object3D.scale.clone();
this.updateCannonScale = debounce(this.updateCannonScale.bind(this), 200);
},
tick: function() {
const scale = this.el.object3D.scale;
if (!almostEquals(scale, this.prevScale, 0.001)) {
this.updateCannonScale();
this.prevScale.copy(scale);
}
},
updateCannonScale: function() {
this.body.updateCannonScale();
console.log("updating?");
}
});
...@@ -162,7 +162,8 @@ ...@@ -162,7 +162,8 @@
gltf-model-plus="src: #interactable-duck; inflate: true;" gltf-model-plus="src: #interactable-duck; inflate: true;"
class="interactable" class="interactable"
super-networked-interactable="counter: #counter; mass: 1;" super-networked-interactable="counter: #counter; mass: 1;"
body="type: dynamic; shape: none; mass: 1; monitorScale: true" body="type: dynamic; shape: none; mass: 1;"
auto-scale-cannon-physics-body
grabbable grabbable
stretchable="useWorldPosition: true; usePhysics: never" stretchable="useWorldPosition: true; usePhysics: never"
hoverable hoverable
...@@ -176,7 +177,8 @@ ...@@ -176,7 +177,8 @@
gltf-model-plus="inflate: false;" gltf-model-plus="inflate: false;"
class="interactable" class="interactable"
super-networked-interactable="counter: #media-counter; mass: 1;" super-networked-interactable="counter: #media-counter; mass: 1;"
body="type: dynamic; shape: none; mass: 1; monitorScale: true" body="type: dynamic; shape: none; mass: 1;"
auto-scale-cannon-physics-body
grabbable grabbable
stretchable="useWorldPosition: true; usePhysics: never" stretchable="useWorldPosition: true; usePhysics: never"
hoverable hoverable
...@@ -190,7 +192,8 @@ ...@@ -190,7 +192,8 @@
<a-entity <a-entity
class="interactable" class="interactable"
super-networked-interactable="counter: #media-counter; mass: 1;" super-networked-interactable="counter: #media-counter; mass: 1;"
body="type: dynamic; shape: none; mass: 1; monitorScale: true" body="type: dynamic; shape: none; mass: 1;"
auto-scale-cannon-physics-body
grabbable grabbable
stretchable="useWorldPosition: true; usePhysics: never" stretchable="useWorldPosition: true; usePhysics: never"
hoverable hoverable
......
...@@ -71,6 +71,7 @@ import "./components/look-on-mobile"; ...@@ -71,6 +71,7 @@ import "./components/look-on-mobile";
import "./components/pitch-yaw-rotator"; import "./components/pitch-yaw-rotator";
import "./components/input-configurator"; import "./components/input-configurator";
import "./components/sticky-object"; import "./components/sticky-object";
import "./components/auto-scale-cannon-physics-body";
import ReactDOM from "react-dom"; import ReactDOM from "react-dom";
import React from "react"; import React from "react";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment