Skip to content

Commit 053fe14

Browse files
Merge pull request #1 from witsCgvProject/Ioanni's-Branch
Ioanni's branch
2 parents ff491a5 + 6d5a2e9 commit 053fe14

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

js/coin_text.jpg

88.5 KB
Loading

js/future_text.jpg

274 KB
Loading

js/gameCoins.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ function Spike(x, y, z, s) {
785785
var geometry = new THREE.BoxGeometry(1000, 500, 500);
786786
// const cubes = []; // just an array we can use to rotate the cubes
787787
const loader = new THREE.TextureLoader();
788-
loader.load("js/metal_text.jpg", (texture) => {
788+
loader.load("js/future_text.jpg", (texture) => {
789789
const material = new THREE.MeshBasicMaterial({ map: texture });
790790
const cube = new THREE.Mesh(geometry, material);
791791
this.mesh.add(cube);
@@ -945,7 +945,7 @@ function createBox(dx, dy, dz, color, x, y, z, notFlatShading) {
945945
function createCylinder( radiusTop, radiusBottom, height, radialSegments, color, x, y, z) {
946946

947947
var geom = new THREE.CylinderGeometry( radiusTop, radiusBottom, height, radialSegments);
948-
const texture = new THREE.TextureLoader().load( "js/metal_text.jpg" );
948+
const texture = new THREE.TextureLoader().load( "js/future_text.jpg" );
949949
const mat = new THREE.MeshStandardMaterial({map: texture})
950950
var cylinder = new THREE.Mesh(geom, mat);
951951
cylinder.castShadow = true;

0 commit comments

Comments
 (0)