Commit ec5e1354 authored by zjz1994's avatar zjz1994

代码暂存

parent d403ece2
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
function injectProps(p) { function injectProps(p) {
engine.injectProp(props, p); engine.injectProp(props, p);
} }
//# sourceMappingURL=props.js.map
function getTexture(uuid) { function getTexture(uuid) {
return engine.Texture.from(getAssetByUUID(uuid).uuid); return engine.Texture.from(getAssetByUUID(uuid).uuid);
...@@ -25,7 +24,6 @@ ...@@ -25,7 +24,6 @@
inst.source = 'asset://' + engine.getAssetByName(name).uuid; inst.source = 'asset://' + engine.getAssetByName(name).uuid;
return inst; return inst;
} }
//# sourceMappingURL=utils.js.map
var Element = (function (_super) { var Element = (function (_super) {
tslib.__extends(Element, _super); tslib.__extends(Element, _super);
...@@ -141,7 +139,6 @@ ...@@ -141,7 +139,6 @@
}; };
return Element; return Element;
}(engine.Container)); }(engine.Container));
//# sourceMappingURL=Element.js.map
var ElementType; var ElementType;
(function (ElementType) { (function (ElementType) {
...@@ -359,7 +356,6 @@ ...@@ -359,7 +356,6 @@
]; ];
return MapData; return MapData;
}()); }());
//# sourceMappingURL=MapData.js.map
var GameView = (function (_super) { var GameView = (function (_super) {
tslib.__extends(GameView, _super); tslib.__extends(GameView, _super);
...@@ -995,9 +991,9 @@ ...@@ -995,9 +991,9 @@
isdiedata = this.attionEliminate(); isdiedata = this.attionEliminate();
if (isdiedata && isdiedata.length == 3) { if (isdiedata && isdiedata.length == 3) {
this.inEliminate = false; this.inEliminate = false;
this.checkGameOver();
this.recordGame(); this.recordGame();
this.changeEnable(true); this.changeEnable(true);
this.checkGameOver();
} }
else { else {
this.solveDieMap("fall"); this.solveDieMap("fall");
...@@ -1660,7 +1656,6 @@ ...@@ -1660,7 +1656,6 @@
}; };
return GameView; return GameView;
}(engine.Container)); }(engine.Container));
//# sourceMappingURL=GameView.js.map
var GameWrapper = (function (_super) { var GameWrapper = (function (_super) {
tslib.__extends(GameWrapper, _super); tslib.__extends(GameWrapper, _super);
...@@ -1700,7 +1695,6 @@ ...@@ -1700,7 +1695,6 @@
}; };
return GameWrapper; return GameWrapper;
}(engine.Container)); }(engine.Container));
//# sourceMappingURL=GameWrapper.js.map
function index (props) { function index (props) {
prepareProps(); prepareProps();
...@@ -1708,7 +1702,6 @@ ...@@ -1708,7 +1702,6 @@
var instance = new GameWrapper(); var instance = new GameWrapper();
return instance; return instance;
} }
//# sourceMappingURL=index.js.map
return index; return index;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -739,9 +739,9 @@ export default class GameView extends engine.Container { ...@@ -739,9 +739,9 @@ export default class GameView extends engine.Container {
if(isdiedata&&isdiedata.length==3){//没死 if(isdiedata&&isdiedata.length==3){//没死
this.inEliminate = false; this.inEliminate = false;
this.checkGameOver();
this.recordGame(); this.recordGame();
this.changeEnable(true); this.changeEnable(true);
this.checkGameOver();
}else{//死图处理 }else{//死图处理
this.solveDieMap("fall"); this.solveDieMap("fall");
} }
......
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