MyArrow.js 196 B

1234567891011
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {},
  4. start() {
  5. var self = this;
  6. this.scheduleOnce(function() {
  7. self.node.destroy();
  8. }, 6);
  9. },
  10. });