| 
 
| 赞 | 2 |  
| VIP | 15 |  
| 好人卡 | 41 |  
| 积分 | 33 |  
| 经验 | 128560 |  
| 最后登录 | 2024-4-2 |  
| 在线时间 | 1120 小时 |  
 Lv3.寻梦者 
	梦石0 星屑3308 在线时间1120 小时注册时间2009-4-15帖子815 | 
| 复制代码class Window_EquipSlot < Window_Selectable
  #--------------------------------------------------------------------------
  # ● 绘制项目
  #--------------------------------------------------------------------------
  def draw_item(index)
    return unless @actor
    rect = item_rect_for_text(index)
    change_color(system_color, enable?(index))
    draw_text(rect.x, rect.y, 92, line_height, slot_name(index)) if index != 1 and index != 2
    draw_item_name(@actor.equips[index], rect.x + 92, rect.y, enable?(index)) if index != 1 and index != 2
  end
end
 | 
 评分
查看全部评分
 |