Minor fix on backend coordinate ratio conversion.

This commit is contained in:
genxium
2022-11-13 12:52:17 +08:00
parent 4369729d9c
commit b031fc1c61
5 changed files with 11 additions and 6 deletions

View File

@@ -352,7 +352,7 @@ cc.Class({
window.mapIns = self;
window.forceBigEndianFloatingNumDecoding = self.forceBigEndianFloatingNumDecoding;
self.showCriticalCoordinateLabels = true;
self.showCriticalCoordinateLabels = false;
console.warn("+++++++ Map onLoad()");
window.handleClientSessionError = function() {

View File

@@ -30,6 +30,10 @@ cc.Class({
'2-1': 'attackedRight'
};
this.arrowTipNode.active = false;
if (!this.mapIns.showCriticalCoordinateLabels) {
this.coordLabel.node.active = false;
}
},
showArrowTipNode() {