设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 6140|回复: 7
打印 上一主题 下一主题

[搬运汉化] RPG Maker MV 1.2.0 版更新日志

[复制链接]

Lv6.析梦学徒

Fuzzy Ginkgo
Taciturn Knight

梦石
0
星屑
60575
在线时间
1933 小时
注册时间
2010-6-26
帖子
1605

烫烫烫开拓者

跳转到指定楼层
1
发表于 2016-4-21 16:54:18 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
本帖最后由 orzfly 于 2016-4-22 11:56 编辑

以下引用自
全球版:http://steamcommunity.com/games/363890/announcements/detail/964144181573120110
http://forums.rpgmakerweb.com/index.php?/topic/60704-rpg-maker-mv-120-update/
日版:http://blog.tkoolmv.com/entry/20160421

- 如果你改过 Generator 文件夹,记得备份。
- 记得备份你的游戏。
- 之前版本中创建的游戏,你需要升级一下脚本文件。方法是创建一个新的游戏,用里面的所有 js 文件(除了 plugins.js 以免丢失你的插件设置)替换掉你当前游戏里的对应文件。

修复的功能 Fixed Issues
----------------------------------------
  • 修正了 tiling sprite 内存泄露的问题
  • Fixed a bug with memory leaks in the tiling sprite.
  • 多显示器时工具提示错位
  • Fixed Editor Tooltips appearing on the wrong monitor when using a multiple monitor setup.
  • 动画里莫名其妙导致目标被隐藏
  • Fixed a bug with animations that caused it to hide the target wrong.
  • 修正了文本框的一些行为(Shift+点击、输入法问题)
  • Fixed an issue with copying and pasting on IME keyboards.
  • 修正了资源管理器里导入同名文件被覆盖的问题
  • Fixed a bug in resource manager that made it so files would not be overwritten if you imported a file with the same name.
  • 修正了 People3.png 里的一张脸
  • Fixed a face in People3.png
  • 修正了默认 m4a 音乐中的循环信息
  • Fixed loop information in default music m4a (03_Battle_Against_the_Demon,03_Fountain_of_Solace,03_Otherworldly_Corridor,03_Party_at_the_Royal_Palace,Field2,Town3)


新功能 Implemented Features
----------------------------------------
  • 资源管理器里支持多选,包括批量导入和删除
  • Implemented Batch Selection in resource manager including Batch file deletion and batch file importing.
  • 资源管理器里增加 DLC 按钮(仅限 Steam 版)
  • Implemented Resource Manager DLC Button
  • 旋转图片现在可以用负数来逆时针旋转了
  • Changed the Picture Rotation Event Command to now be able to rotate pictures counter clockwise using negative values.
  • 工具菜单里加了一个选项 (Mac 版在 “RPG Maker MV” 菜单里)
  • Addition of an Option command in the Tool menu
  • 选项菜单里加了一个工具选项
  • Addition of a Tool option in the Option menu
  • 增加地图网格选项
  • Implemented Map Grid Options
  • 增加黑色以及高对比度主题(和透明色选项)
  • Implemented Dark, High Contrast Black and High Contrast White theme
  • 在 Windows 上启用最基本的 DPI 缩放
  • Implemented editor DPI Scaling on Windows
  • 地图编辑器支持 Ctrl+鼠标滚轮(非Mac)/Cmd+鼠标滚轮(Mac) 缩放
  • Added Map zoom function to mouse wheel (CTRL + wheel or Command + wheel)
  • 插件管理器右键菜单中增加“刷新”菜单
  • Implemented Refresh Button for Plugin Manager.


更改的功能 Changed
----------------------------------------
  • 为了确保碰撞正常工作,B 图块中最左上角一格的通行度被强行设置成★
  • The top left tile in the "B" tileset is changed to always be a "Star" passability. This is to ensure collisions work right.


以下为我个人补充的内容。

  • 1.1.0 里有个新加的功能可能很少有人知道,那就是插件管理器等地方可以拖拽排序……

20160418171231.jpg (169.63 KB, 下载次数: 18)

20160418171231.jpg

20160418171354.jpg (169.8 KB, 下载次数: 19)

20160418171354.jpg

20160418171436.jpg (311.31 KB, 下载次数: 20)

20160418171436.jpg
我的言论只代表我个人的观点,不代表雇主及/或任何第三方的立场。
Opinions expressed are solely my own and do not express the views or opinions of my employer and/or any third parties.
捐赠 | GitHub

Lv5.捕梦者

梦石
0
星屑
21937
在线时间
8566 小时
注册时间
2011-12-31
帖子
3362
来自 2楼
发表于 2016-4-21 17:03:56 | 只看该作者
http://ktnhmv.jugem.jp/?eid=38
今次js的修正的地方
main.js
rpg_managers.js
rpg_scenes.js
無改変

rpg_objects.js
1092行目改変。(if (this._rotationSpeed > 0) {  >> if (this._rotationSpeed !== 0) {)
圖片回転修正
rpg_core.js
4754行目下追加
TilingSprite.prototype.generateTilingTexture = function(arg) {
    PIXI.TilingSprite.prototype.generateTilingTexture.call(this, arg);
    // Purge from Pixi's Cache
    if (this.tilingTexture.canvasBuffer)
        PIXI.Texture.removeTextureFromCache(this.tilingTexture.canvasBuffer.canvas._pixiId);
};

rpg_sprites.js
1431行目〜
Sprite_Animation.prototype.updateCellSprite処理部分改変
sprite.visible = this._target.visible; >> sprite.visible = true;
回复 支持 反对

使用道具 举报

Lv4.逐梦者

梦石
0
星屑
5712
在线时间
1556 小时
注册时间
2011-6-14
帖子
520
3
发表于 2016-4-21 17:06:58 手机端发表。 | 只看该作者
问下以前版本的插件现在使用会引起不兼容吗

点评

↓我知道呀,但是这跟插件兼容性有什么关系?别人问的是插件兼容性,你回复他一个引擎本身的不具合是为啥呢?  发表于 2016-4-21 17:50
↓好像是rpg_core.js新加的那段有点兒関係,二楼的連結有提出,但不太肯定  发表于 2016-4-21 17:45
↓然而这跟插件有什么关系  发表于 2016-4-21 17:22
有人反映更新後在Vista互換設定下Canvas模式時イベント「遠景の変更」出現錯誤  发表于 2016-4-21 17:12
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
567
在线时间
250 小时
注册时间
2014-10-13
帖子
69
4
发表于 2016-4-21 18:29:23 | 只看该作者
347780682 发表于 2016-4-21 17:06
问下以前版本的插件现在使用会引起不兼容吗

用新的js文件覆盖旧版的,场景切换时出错。

点评

主楼:目前有一个问题会导致 canvas 模式运行的游戏出错,建议先不要升级游戏引擎(新版编辑器可以正常使用)  发表于 2016-4-21 18:54
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
567
在线时间
250 小时
注册时间
2014-10-13
帖子
69
5
发表于 2016-4-21 19:25:12 | 只看该作者
已经找到问题了,
是存档截图插件和双远景插件与新版本有冲突。
不过令人高兴的是,内存泄漏问题终于解决了!
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
73 小时
注册时间
2016-4-6
帖子
39
6
发表于 2016-4-22 23:20:39 | 只看该作者
Canvas模式的error 好像修正了
--vvv--內有script --vvv--
http://ktnhmv.jugem.jp/?eid=38
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
90 小时
注册时间
2006-5-22
帖子
68
7
发表于 2016-4-23 12:34:25 | 只看该作者
无法升级啊,安装时显示mv has not been updated,和解?
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
885
在线时间
3 小时
注册时间
2016-8-3
帖子
1
8
发表于 2016-9-24 23:12:12 | 只看该作者
请教一下,有没有解包的相关工具?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-4-29 23:51

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表