loading.js 194 B

123456789101112
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. },
  5. start () {
  6. this.scheduleOnce(function(){
  7. cc.director.loadScene('Login');
  8. },3);
  9. },
  10. });