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.

19 lines
295 B

  1. define([
  2. 'js/sound/sound'
  3. ], function (
  4. sound
  5. ) {
  6. return {
  7. type: 'sound',
  8. sound: null,
  9. volume: 0,
  10. init: function () {
  11. var obj = this.obj;
  12. console.log(this.obj);
  13. sound.addSound(obj.zoneId, this.sound, this.volume, obj.x, obj.y, obj.width, obj.height, obj.area);
  14. }
  15. };
  16. });