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

Don't call setAttribute twice.

parent 3d48c5bb
No related branches found
No related tags found
No related merge requests found
......@@ -76,8 +76,8 @@ AFRAME.registerComponent("cursor-controller", {
.applyQuaternion(rayObjectRotation)
.normalize();
this.origin.setFromMatrixPosition(this.rayObject.matrixWorld);
this.el.setAttribute("raycaster", { origin: this.origin, direction: this.direction });
}
this.el.setAttribute("raycaster", { origin: this.origin, direction: this.direction });
const isGrabbing = this.data.cursor.components["super-hands"].state.has("grab-start");
if (isGrabbing) {
......
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