V2.6.3
This commit is contained in:
parent
36cdcd0dbd
commit
e59898db2b
11
README.md
11
README.md
@ -55,17 +55,18 @@ HTML5 canvas制作的魔塔样板,支持全平台游戏!
|
||||
|
||||
## 更新说明
|
||||
|
||||
### 2019.7.5 V2.6.3
|
||||
### 2019.7.24 V2.6.3
|
||||
|
||||
* [x] 标题界面大幅美化,支持键盘开始游戏
|
||||
* [x] 标题界面大幅美化,增加闪烁光标,支持键盘开始游戏
|
||||
* [x] 事件编辑器支持自动补全,能对flag和API列表等进行补全
|
||||
* [x] 剧情文本中\\c修改字体大小,\\d和\\e切换粗体和斜体
|
||||
* [x] 可以指定每个选择项的出现条件,动态生成
|
||||
* [x] 事件:设置视角&移动视角
|
||||
* [x] 可以指定显示选择项的出现条件并动态生成
|
||||
* [x] 楼层传送器的平面传送模式(哪里离开飞回到哪里)
|
||||
* [x] UI绘制事件增添绘制圆(边框),且可直接双击预览
|
||||
* [x] UI绘制事件增添绘制圆和绘制圆边框
|
||||
* [x] 所有的UI绘制事件均可以双击预览
|
||||
* [x] 播放BGM事件可以一直持续播放直到下次调用
|
||||
* [x] \f立绘支持alpha值
|
||||
* [x] 只有一个全局商店时V键能直接打开
|
||||
* [x] 支持在脚本编辑中直接flags.xxx调用自定义变量
|
||||
* [x] 首次获得道具将给予提示
|
||||
* [x] 等待用户操作支持滚轮,视为PgUp和PgDn
|
||||
|
||||
@ -137,7 +137,7 @@ actions.prototype._sys_onkeyDown = function (e) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
e.preventDefault();
|
||||
if (e.preventDefault) e.preventDefault();
|
||||
core.status.holdingKeys.push(e.keyCode);
|
||||
this.pressKey(e.keyCode);
|
||||
} else {
|
||||
@ -199,7 +199,7 @@ actions.prototype._sys_onkeyUp = function (e) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
e.preventDefault();
|
||||
if (e.preventDefault) e.preventDefault();
|
||||
this.keyUp(e.keyCode, e.altKey);
|
||||
} else {
|
||||
if (e.keyCode == 17) core.status.ctrlDown = false;
|
||||
|
||||
@ -1236,7 +1236,7 @@ control.prototype.bookReplay = function () {
|
||||
|
||||
// 从“浏览地图”页面打开
|
||||
if (core.status.event.id=='viewMaps')
|
||||
core.status.event.selection = core.status.event.data;
|
||||
core.status.event.ui = core.status.event.data;
|
||||
|
||||
core.lockControl();
|
||||
core.status.event.id='book';
|
||||
@ -2386,6 +2386,7 @@ control.prototype.hideStatusBar = function (showToolbox) {
|
||||
// 如果原本就是隐藏的,则先显示
|
||||
if (!core.domStyle.showStatusBar)
|
||||
this.showStatusBar();
|
||||
if (core.isReplaying()) showToolbox = true;
|
||||
|
||||
var statusItems = core.dom.status, toolItems = core.dom.tools;
|
||||
core.domStyle.showStatusBar = false;
|
||||
@ -2493,7 +2494,7 @@ control.prototype.setToolbarButton = function (useButton) {
|
||||
}
|
||||
|
||||
if (useButton == null) useButton = core.domStyle.toolbarBtn;
|
||||
if (!core.domStyle.isVertical) useButton = false;
|
||||
if (!core.domStyle.isVertical || core.isReplaying()) useButton = false;
|
||||
core.domStyle.toolbarBtn = useButton;
|
||||
|
||||
if (useButton) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user