1234567891011121314151617181920212223242526272829 |
- 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();
- cc.director.loadScene('Level');
- }
- });
|