No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
392B

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