LocationLine.js 184 B

12345678910111213
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. },
  5. start () {
  6. this.schedule(function()
  7. {
  8. this.node.destroy();
  9. }, 5,0);
  10. },
  11. });