Game Engine for 3D games with pre-rendered background in the browser https://victorgiers.com/painted_world/v0.1/painted_world.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

painted_world.html 637B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Painted World</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  7. <meta name="author" content="Victor Giers">
  8. <script
  9. src="https://code.jquery.com/jquery-3.5.1.min.js"
  10. integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
  11. crossorigin="anonymous"></script>
  12. <link rel="stylesheet" type="text/css" href="painted_world.css">
  13. </head>
  14. <body>
  15. <div id="container"><div id="overlay"></div></div>
  16. <script src="v3d.js"></script>
  17. <script src="painted_world.js"></script>
  18. </body>
  19. </html>