Проверить Matter.js
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.

16 lines
413B

  1. мир.физика = {
  2. движок: null,
  3. настройки: {
  4. enableSleeping: true,
  5. gravity: {
  6. y: 2,
  7. },
  8. },
  9. создать: function() {
  10. мир.физика.движок = Matter.Engine.create(мир.физика.настройки);
  11. },
  12. обновить: function() {
  13. Matter.Engine.update(мир.физика.движок);
  14. },
  15. };