Колобок на Phaser
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.

208.группы.js 406B

3 years ago
12345678910111213141516171819202122232425262728293031
  1. /*
  2. *
  3. * Реакции
  4. *
  5. */
  6. // // // //
  7. ЗадатьТрениеВещам = мир =>
  8. {
  9. мир.вещи.children.iterate(function(вещь) {
  10. вещь.body.setFrictionX(1);
  11. //вещь.body.setAccelerationX(0);
  12. });
  13. };
  14. /*
  15. *
  16. * Последовательность
  17. *
  18. */
  19. мир.разобрать(`
  20. создать сцену
  21. задать трение вещам
  22. `);