Project1

标题: 有没有基础的双向(?)放入物品/技能的基础菜单窗口 [打印本页]

作者: chd114    时间: 2015-6-21 10:10
标题: 有没有基础的双向(?)放入物品/技能的基础菜单窗口
标题解释不清···就是类似这个帖子https://rpg.blue/forum.php?mod=v ... D368%26typeid%3D368
这种,但是进入后默认的未装备未放入的物品或技能在左边,放入的显示在右边(光标可右移到右边移除放入的物品或者技能)···
表示试着自己弄一个结果七荤八素地出了一个莫名其妙的BUG···无力ing只好来发帖求助了QWQ@希忆 @三途亚梦 @VIPArcher

作者: 希忆    时间: 2015-6-21 12:12
本帖最后由 希忆 于 2015-6-21 12:13 编辑

坐标互换不就行了么?稍微注意一下就是了#834~856未测试
  1.   def create_windows
  2.     @help_window = Window_Help.new
  3.     dy = @help_window.height
  4.     @status_window = Window_BattleSkillStatus.new(0, dy, @actor)
  5.     dy += @status_window.height
  6.     @list_window = Window_BattleSkillList.new(
  7.       0,
  8.       dy,
  9.       Graphics.width / 2,
  10.      Graphics.height - dy,
  11.       @actor)
  12.     @list_window.help_window = @help_window

  13.    @slot_window = Window_BattleSkillSlot.new(
  14.       Graphics.width - @list_window.width,
  15.       dy,
  16.       Graphics.width - @list_window.width,
  17.       Graphics.height - dy,
  18.       @actor)
  19.     @slot_window.help_window = @help_window
  20.     @slot_window.active = true
  21.   end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1