08. 音效
在本章中,我们将对按键击打片段添加音效。
声明
与之前类似,声明将使用的音效片段:
export const effect = defineEffect({
clips: {
perfect: EffectClipName.Perfect,
},
})
export const effect = defineEffect({
clips: {
perfect: EffectClipName.Perfect,
},
})
击打音效
让我们为击打片段添加音效:
export const noteHit = {
enter() {
effect.clips.perfect.play(0)
},
}
export const noteHit = {
enter() {
effect.clips.perfect.play(0)
},
}