赞 | 0 |
VIP | 0 |
好人卡 | 9 |
积分 | 1 |
经验 | 10565 |
最后登录 | 2017-12-2 |
在线时间 | 185 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 185 小时
- 注册时间
- 2014-9-4
- 帖子
- 82
|
本帖最后由 希忆 于 2015-6-21 12:13 编辑
坐标互换不就行了么?稍微注意一下就是了#834~856未测试- def create_windows
- @help_window = Window_Help.new
- dy = @help_window.height
- @status_window = Window_BattleSkillStatus.new(0, dy, @actor)
- dy += @status_window.height
- @list_window = Window_BattleSkillList.new(
- 0,
- dy,
- Graphics.width / 2,
- Graphics.height - dy,
- @actor)
- @list_window.help_window = @help_window
- @slot_window = Window_BattleSkillSlot.new(
- Graphics.width - @list_window.width,
- dy,
- Graphics.width - @list_window.width,
- Graphics.height - dy,
- @actor)
- @slot_window.help_window = @help_window
- @slot_window.active = true
- end
复制代码 |
评分
-
查看全部评分
|