diff --git a/src/lights/Light.js b/src/lights/Light.js index 7b2eb23..5bf75b7 100644 --- a/src/lights/Light.js +++ b/src/lights/Light.js @@ -24,10 +24,6 @@ export default { default: 1, }, position: Object, - // position: { - // type: Object, - // default: new Vector3(0, 0, 0), - // }, }, mounted() { setFromProp(this.light.position, this.position); diff --git a/src/meshes/Mesh.js b/src/meshes/Mesh.js index ab92583..8dd77bb 100644 --- a/src/meshes/Mesh.js +++ b/src/meshes/Mesh.js @@ -8,18 +8,6 @@ export default { position: Object, rotation: Object, scale: Object, - // position: { - // type: Object, - // default: new Vector3(), - // }, - // rotation: { - // type: Object, - // default: new Euler(), - // }, - // scale: { - // type: Object, - // default: new Vector3(1, 1, 1), - // }, }, mounted() { this.mesh = new Mesh(this.geometry, this.three.materials[this.material]);