Ver 1.3.2

This commit is contained in:
ckcz123 2018-01-17 21:29:15 +08:00
parent ac28d8622e
commit 89af952bf6
3 changed files with 3 additions and 4 deletions

View File

@ -6,7 +6,7 @@ data.prototype.init = function() {
this.firstData = {
"title": "魔塔样板", // 游戏名,将显示在标题页面以及切换楼层的界面中
"name": "template", // 游戏的唯一英文标识符。由英文、数字、下划线组成不能超过20个字符。
"version": "Ver 1.3.2.0", // 当前游戏版本;版本不一致的存档不能通用。
"version": "Ver 1.3.2", // 当前游戏版本;版本不一致的存档不能通用。
"floorId": "sample0", // 初始楼层ID
"hero": { // 勇士初始数据
"name": "阳光", // 勇士名;可以改成喜欢的

View File

@ -654,7 +654,6 @@ ui.prototype.drawWaiting = function(text) {
core.setFillStyle('ui', background);
core.setFont('ui', 'bold 17px Verdana');
core.setFillStyle('ui', '#FFFFFF');
var text_length = core.canvas.ui.measureText(text).width;
var right = Math.max(text_length+50, 220);
@ -664,7 +663,7 @@ ui.prototype.drawWaiting = function(text) {
core.strokeRect('ui', left - 1, top - 1, right + 1, bottom + 1, '#FFFFFF', 2);
core.canvas.ui.textAlign = "center";
core.fillText('ui', text, 208, top + 56);
core.fillText('ui', text, 208, top + 56, '#FFFFFF');
}

View File

@ -2,7 +2,7 @@ function main() {
//------------------------ 用户修改内容 ------------------------//
this.version = "1.3.2.0"; // 游戏版本号如果更改了游戏内容建议修改此version以免造成缓存问题。
this.version = "1.3.2"; // 游戏版本号如果更改了游戏内容建议修改此version以免造成缓存问题。
this.useCompress = false; // 是否使用压缩文件
// 当你即将发布你的塔时请使用“JS代码压缩工具”将所有js代码进行压缩然后将这里的useCompress改为true。