| 123456789101112131415161718192021222324252627282930 |
- // Learn cc.Class:
- // - https://docs.cocos.com/creator/manual/en/scripting/class.html
- // Learn Attribute:
- // - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
- // Learn life-cycle callbacks:
- // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
- cc.Class({
- extends: cc.Component,
- properties: {
- tipClip: {
- default: [],
- type: cc.AudioClip,
- tooltip: "提示出拳方式, 0 左,1 中,2 右",
- },
- },
- // LIFE-CYCLE CALLBACKS:
- // onLoad () {},
- start () {
- },
- onPlayBoxingTip(tipIndex) {
- cc.audioEngine.play(this.tipClip[tipIndex], false, 1);
- },
- // update (dt) {},
- });
|