123456789101112131415161718192021222324252627282930 |
- cc.Class({
- extends: cc.Component,
- properties: {
- button: cc.Button,
- },
-
-
-
-
-
-
-
- onLoad: function () {
- this.button.node.on('click', this.callback, this);
- },
-
- update: function (dt) {
- },
- callback: function (event) {
- Audio.playeffect('resources/audio/sound_click.mp3');
- cc.director.resume();
- Global.LevelNow++;
- cc.director.loadScene('LLK');
- }
- });
|