Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

main.js 698B

12345678910111213141516171819202122232425262728
  1. /**
  2. * -------------------------------------------
  3. * Magic AR Basketball
  4. * A demo game of the encantar.js WebAR engine
  5. * -------------------------------------------
  6. * @fileoverview Main function
  7. * @author Alexandre Martins <alemartf(at)gmail.com> (https://github.com/alemart/encantar-js)
  8. */
  9. import { BasketballGame } from './core/game.js';
  10. /**
  11. * Start the game
  12. * @returns {void}
  13. */
  14. function main()
  15. {
  16. const game = new BasketballGame();
  17. if(typeof encantar === 'undefined')
  18. throw new Error(`Can't find the babylon.js plugin for encantar.js`);
  19. encantar(game).catch(error => {
  20. alert(error.message);
  21. });
  22. }
  23. document.addEventListener('DOMContentLoaded', main);