()
| 16953 | //class laya.media.h5audio.AudioSound extends laya.events.EventDispatcher |
| 16954 | var AudioSound=(function(_super){ |
| 16955 | function AudioSound(){ |
| 16956 | /** |
| 16957 | *声音URL |
| 16958 | */ |
| 16959 | this.url=null; |
| 16960 | /** |
| 16961 | *播放用的audio标签 |
| 16962 | */ |
| 16963 | this.audio=null; |
| 16964 | /** |
| 16965 | *是否已加载完成 |
| 16966 | */ |
| 16967 | this.loaded=false; |
| 16968 | AudioSound.__super.call(this); |
| 16969 | } |
| 16970 | |
| 16971 | __class(AudioSound,'laya.media.h5audio.AudioSound',_super); |
| 16972 | var __proto=AudioSound.prototype; |