Skip to content
Snippets Groups Projects
Commit 4986879f authored by Robert Long's avatar Robert Long
Browse files

Clean up logs. Fix warning messages and remove unessesary console.logs.

parent 390257c5
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,6 @@ export class App { ...@@ -15,7 +15,6 @@ export class App {
this.quality = quality; this.quality = quality;
if (this.scene) { if (this.scene) {
console.log("quality-changed", quality);
this.scene.dispatchEvent(new CustomEvent("quality-changed", { detail: quality })); this.scene.dispatchEvent(new CustomEvent("quality-changed", { detail: quality }));
} }
......
...@@ -14,7 +14,6 @@ AFRAME.registerComponent("bone-mute-state-indicator", { ...@@ -14,7 +14,6 @@ AFRAME.registerComponent("bone-mute-state-indicator", {
this.el.addEventListener("model-loaded", () => { this.el.addEventListener("model-loaded", () => {
this.unmutedBone = this.el.object3D.getObjectByName(this.data.unmutedBoneName); this.unmutedBone = this.el.object3D.getObjectByName(this.data.unmutedBoneName);
this.mutedBone = this.el.object3D.getObjectByName(this.data.mutedBoneName); this.mutedBone = this.el.object3D.getObjectByName(this.data.mutedBoneName);
console.log(this.unmutedBone, this.mutedBone);
this.modelLoaded = true; this.modelLoaded = true;
this.updateMuteState(); this.updateMuteState();
......
...@@ -2,7 +2,7 @@ import { CONTROLLER_OFFSETS } from "./hand-controls2.js"; ...@@ -2,7 +2,7 @@ import { CONTROLLER_OFFSETS } from "./hand-controls2.js";
AFRAME.registerComponent("controls-shape-offset", { AFRAME.registerComponent("controls-shape-offset", {
schema: { schema: {
additionalOffset: { default: { x: 0, y: -0.03, z: -0.04 } } additionalOffset: { type: "vec3", default: { x: 0, y: -0.03, z: -0.04 } }
}, },
init: function() { init: function() {
this.controller = null; this.controller = null;
......
...@@ -109,8 +109,7 @@ AFRAME.registerComponent("hand-controls2", { ...@@ -109,8 +109,7 @@ AFRAME.registerComponent("hand-controls2", {
const controlConfiguration = { const controlConfiguration = {
hand: hand, hand: hand,
model: false, model: false
rotationOffset: 0
}; };
if (hand !== prevData) { if (hand !== prevData) {
......
...@@ -17,7 +17,6 @@ AFRAME.registerComponent("hide-when-quality", { ...@@ -17,7 +17,6 @@ AFRAME.registerComponent("hide-when-quality", {
}, },
updateComponentState(quality) { updateComponentState(quality) {
console.log(quality);
this.el.setAttribute("visible", quality !== this.data); this.el.setAttribute("visible", quality !== this.data);
} }
}); });
...@@ -131,7 +131,7 @@ class AvatarSelector extends Component { ...@@ -131,7 +131,7 @@ class AvatarSelector extends Component {
<a-entity key={avatar.id} rotation={`0 ${360 * -i / this.props.avatars.length} 0`}> <a-entity key={avatar.id} rotation={`0 ${360 * -i / this.props.avatars.length} 0`}>
<a-entity position="0 0 5" gltf-model-plus={`src: #${avatar.id}`} inflate="true"> <a-entity position="0 0 5" gltf-model-plus={`src: #${avatar.id}`} inflate="true">
<template data-selector=".RootScene"> <template data-selector=".RootScene">
<a-entity animation-mixer /> <a-entity animation-mixer="" />
</template> </template>
<a-animation <a-animation
...@@ -168,7 +168,7 @@ class AvatarSelector extends Component { ...@@ -168,7 +168,7 @@ class AvatarSelector extends Component {
</a-entity> </a-entity>
<a-entity position="0 1.5 -5.6" rotation="-10 180 0"> <a-entity position="0 1.5 -5.6" rotation="-10 180 0">
<a-entity camera /> <a-entity camera="" />
</a-entity> </a-entity>
<a-entity <a-entity
......
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