Alert.js 290 B

12345678910111213141516
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. label: {
  5. default: null,
  6. type: cc.Label,
  7. serializable: true,
  8. },
  9. },
  10. start () {
  11. this.scheduleOnce(function(){
  12. this.node.destroy();
  13. },2)
  14. },
  15. });