QQ图片20170410151722.png (101.87 KB, 下载次数: 27)
#encoding:utf-8 #============================================================================== # ■ Window_MenuCommand #------------------------------------------------------------------------------ # 菜单画面中显示指令的窗口 #============================================================================== class Window_MenuCommand < Window_Command #-------------------------------------------------------------------------- # ● 获取项目的绘制矩形 #-------------------------------------------------------------------------- def item_rect(index) rect = Rect.new rect.width = item_width-80#矩形宽度减80 rect.height = item_height rect.x = index % col_max * (item_width + spacing) rect.y = index / col_max * item_height rect end #-------------------------------------------------------------------------- # ● 获取项目的绘制矩形(内容用) #-------------------------------------------------------------------------- def item_rect_for_text(index) rect = item_rect(index) rect.x += 4 rect.width -= 8-80#矩形宽度减-80 rect end end
QQ图片20170410163607.png (532.87 KB, 下载次数: 28)
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |