Skip to content

Commit

Permalink
Update welcome.js
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyH2 committed Mar 30, 2024
1 parent cd0da16 commit 6757403
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/screens/start/welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@ class WelcomeScreen extends Screen {
renderGroup.add( light );

// Fade effect
renderGroup.background = new THREE.Color( 0x976dc2 );
renderGroup.fog = new THREE.Fog( 0x976dc2, 200, 1000 );

// Ground
const grid = new THREE.GridHelper( 2000, 20, 0x000000, 0x000000 );
grid.position.y = -300;
renderGroup.add( grid );
renderGroup.background = new THREE.Color( 0x000000 );

// UI
var texture = new THREE.TextureLoader().load( "./assets/logos/images/full_logo.png" );
Expand All @@ -45,7 +39,7 @@ class WelcomeScreen extends Screen {

setTimeout(() => {
this.renderScreen(new ActionsInfoScreen(this.root));
}, 8000);
}, 14000);
};
};

Expand Down

0 comments on commit 6757403

Please sign in to comment.