Files
beimi/client/beimi/temp/BackupAssets/assets/script/action/login/event.js
2017-08-05 18:04:59 +08:00

30 lines
957 B
JavaScript

cc.Class({
extends: cc.Component,
properties: {
// foo: {
// default: null, // The default value will be used only when the component attaching
// to a node for the first time
// url: cc.Texture2D, // optional, default is typeof default
// serializable: true, // optional, default is true
// visible: true, // optional, default is true
// displayName: 'Foo', // optional
// readonly: false, // optional, default is false
// },
// ...
},
// use this for initialization
onLoad: function () {
this.node.opacity = 50;
this.node.on(cc.Node.EventType.TOUCH_START, function (e) {
e.stopPropagation();
});
},
// called every frame, uncomment this function to activate update callback
// update: function (dt) {
// },
});