Commit b0cb602e authored by wildfirecode's avatar wildfirecode

1

parent 0b7dc4a7
......@@ -99,7 +99,7 @@ export default class StartScene extends Scene {
});
this['percentTxt'].text = `100%`
clearInterval(this._timer);
}, 200 + 1700 );
}, 200 + 1700);
}
get skinKey() { return 'Start' }
......@@ -114,11 +114,13 @@ export const changeMapScene = (p?) => {
let _startSceneData;
export const createData = () => {
if (_startSceneData) return _startSceneData;
if (_startSceneData) {
if (_startSceneData.level !== null && _startSceneData.level !== undefined)
delete _startSceneData.level
return _startSceneData;
}
const startSceneData: any = {};
_startSceneData = startSceneData;
if(_startSceneData.level !== null && _startSceneData.level !== undefined)
delete _startSceneData.level
const repeatCount = getRepeatCount();
const list = [];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment