Code: Creating Simple Shapes

This is the final version of the shapes code from Chapter 1, ​Project: Creating Simple Shapes​:

​ <body></body>
​ <script src=​"/three.js"​></script>
​ <script>
​  ​// The "scene" is where stuff in our game will happen:​
​  ​var​ scene = ​new​ THREE.Scene();
​  ​var​ flat = {flatShading: ​true​};
​  ​var​ light = ​new​ THREE.AmbientLight(​'white'​, 0.8);
​  scene.add( light );
​ 
​  ​// The "camera" is what sees the stuff:​
​  ​var​ aspectRatio = window.innerWidth / window.innerHeight;
​  ​var​ camera = ​new​ THREE.PerspectiveCamera(75, aspectRatio, 1, 10000);
​  camera.position.z = 500;
​  scene.add(camera);
​ 
​  ​// The "renderer" ...

Get 3D Game Programming for Kids, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.