Skip to content

Commit

Permalink
update three js
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-gh committed May 11, 2024
1 parent f6397bf commit 9dbb621
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion assets/js/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/main.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license
* Copyright 2010-2022 Three.js Authors
* Copyright 2010-2024 Three.js Authors
* SPDX-License-Identifier: MIT
*/
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"webpack-cli": "^5.1.4"
},
"dependencies": {
"three": "^0.144.0"
"three": "^0.164.1"
}
}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const renderer = new THREE.WebGLRenderer();
fractalElement.append(renderer.domElement);

const scene = new THREE.Scene();
const mesh = new THREE.Mesh(new THREE.PlaneBufferGeometry(2.0, 2.0), null);
const mesh = new THREE.Mesh(new THREE.PlaneGeometry(2.0, 2.0), null);
scene.add(mesh);

const frameCamera = new THREE.Camera();
Expand Down

0 comments on commit 9dbb621

Please sign in to comment.