| 
 
| 赞 | 1 |  
| VIP | 392 |  
| 好人卡 | 225 |  
| 积分 | 48 |  
| 经验 | 177731 |  
| 最后登录 | 2020-12-8 |  
| 在线时间 | 2037 小时 |  
 Lv3.寻梦者 虚空人形 
	梦石0 星屑4763 在线时间2037 小时注册时间2011-8-11帖子3398 
 | 
| 在Window_ChoiceList有 把初始化对象的(0,0)改为数字或者self.x和self.y的值改为你想要的值试试。复制代码  #--------------------------------------------------------------------------
  # ● 初始化对象
  #--------------------------------------------------------------------------
  def initialize(message_window)
    @message_window = message_window
    super(0, 0)
    self.openness = 0
    deactivate
  end
  #--------------------------------------------------------------------------
  # ● 开始输入的处理
  #--------------------------------------------------------------------------
  def start
    update_placement
    refresh
    select(0)
    open
    activate
  end
  #--------------------------------------------------------------------------
  # ● 更新窗口的位置
  #--------------------------------------------------------------------------
  def update_placement
    self.width = [max_choice_width + 12, 96].max + padding * 2
    self.width = [width, Graphics.width].min
    self.height = fitting_height($game_message.choices.size)
    self.x = Graphics.width - width
    if @message_window.y >= Graphics.height / 2
      self.y = @message_window.y - height
    else
      self.y = @message_window.y + @message_window.height
    end
  end
 | 
 |