(obj?: SoundSystemParams)
| 55 | private audioBufferCache = {}; |
| 56 | |
| 57 | constructor(obj?: SoundSystemParams) { |
| 58 | super(); |
| 59 | Object.assign(this, obj); |
| 60 | if (obj?.useLegacy) { |
| 61 | sound.useLegacy = true; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * 恢复播放所有被暂停的音频 |
nothing calls this directly
no outgoing calls
no test coverage detected