We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e715eca commit 02cfbb6Copy full SHA for 02cfbb6
src/World/World.ts
@@ -36,7 +36,7 @@ class World {
36
* background color in index.css to prevent flashing on load
37
* (src/styles/index.css #scene-container)
38
*/
39
- scene = createScene({ backgroundColor: 'skyblue' });
+ scene = createScene({ backgroundColor: 'transparent' });
40
renderer = createRenderer();
41
controls = createControls({ camera: camera, canvas: renderer.domElement });
42
loop = new Loop({ camera, scene, renderer });
src/styles/index.css
@@ -32,5 +32,5 @@ h1 {
32
background to prevent flashing on load
33
(src/World/components/scene.ts)
34
35
- background-color: skyblue;
+ background-color: transparent;
}
0 commit comments