Code: The Purple Fruit Monster Game
This is the final version of the game code from Chapter 14, Project: The Purple Fruit Monster Game:
| <body></body> |
| <script src="/three.js"></script> |
| <script src="/physi.js"></script> |
| <script src="/scoreboard.js"></script> |
| <script> |
| // Physics settings |
| Physijs.scripts.ammo = '/ammo.js'; |
| Physijs.scripts.worker = '/physijs_worker.js'; |
| |
| // The "scene" is where stuff in our game will happen: |
| var scene = new Physijs.Scene(); |
| scene.setGravity(new THREE.Vector3( 0, -250, 0 )); |
| var flat = {flatShading: true}; |
| var light = new THREE.AmbientLight('white', 0.8); |
| scene.add(light); |
| |
| // The "camera" is what sees the stuff: |
| var w = window.innerWidth / 2; |
| var ... |
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.