We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 134a429 commit d09e869Copy full SHA for d09e869
.gitignore
@@ -24,4 +24,6 @@ dist-ssr
24
*.sw?
25
.pnpm-store/
26
_*
27
-/layout*.js
+/layout*.js
28
+/assets
29
+test*
src/ThreeScene.ts
@@ -126,7 +126,7 @@ export class ThreeScene {
126
const delta = this.clock.getDelta()
127
this.updateLightPosition();
128
this.objHolder.rotateY(delta*this.rotationSpeed)
129
- this.objHolder.rotateX(delta*this.rotationSpeed)
+ this.objHolder.rotateX(-delta*this.rotationSpeed)
130
this.renderer.render( this.scene, this.camera );
131
}
132
0 commit comments