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

32 lines
406B

  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. `);