Project1

标题: 关于选项光标的问题 [打印本页]

作者: megaman    时间: 2017-4-10 15:18
标题: 关于选项光标的问题
请问一个问题,就是物品技能那栏的透明光标怎么缩短宽度,太长了。

QQ图片20170410151722.png (101.87 KB, 下载次数: 27)

QQ图片20170410151722.png

作者: 夜狠简单    时间: 2017-4-10 16:01
默认工程里面可以参考下我这个改
RUBY 代码复制
  1. #encoding:utf-8
  2. #==============================================================================
  3. # ■ Window_MenuCommand
  4. #------------------------------------------------------------------------------
  5. #  菜单画面中显示指令的窗口
  6. #==============================================================================
  7.  
  8. class Window_MenuCommand < Window_Command
  9.   #--------------------------------------------------------------------------
  10.   # ● 获取项目的绘制矩形
  11.   #--------------------------------------------------------------------------
  12.   def item_rect(index)
  13.     rect = Rect.new
  14.     rect.width = item_width-80#矩形宽度减80
  15.     rect.height = item_height
  16.     rect.x = index % col_max * (item_width + spacing)
  17.     rect.y = index / col_max * item_height
  18.     rect
  19.   end
  20.   #--------------------------------------------------------------------------
  21.   # ● 获取项目的绘制矩形(内容用)
  22.   #--------------------------------------------------------------------------
  23.   def item_rect_for_text(index)
  24.     rect = item_rect(index)
  25.     rect.x += 4
  26.     rect.width -= 8-80#矩形宽度减-80
  27.     rect
  28.   end
  29. end

作者: megaman    时间: 2017-4-10 16:37
图片是这样的

QQ图片20170410163607.png (532.87 KB, 下载次数: 28)

QQ图片20170410163607.png





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