【解決済み】かざり様のスキル習得装備と星潟のスキルタイプ選択コマンド消去の競合でAPビューアーが見られないのを解消したい

Sえす
記事: 26
登録日時: 2020年5月21日(木) 00:50

【解決済み】かざり様のスキル習得装備と星潟のスキルタイプ選択コマンド消去の競合でAPビューアーが見られないのを解消したい

投稿記事by Sえす » 2020年10月03日(土) 19:08

かざり様のスキル習得装備と星潟様のスキルタイプ選択コマンド消去が競合してAPビューアーが使えなくなるのを解消したいです。
どなたかよろしくお願いいたします。
最後に編集したユーザー Sえす on 2020年10月06日(火) 20:45 [ 編集 2 回目 ]

TOMO
記事: 343
登録日時: 2015年11月16日(月) 20:12
連絡を取る:

Re: かざり様のスキル習得装備と星潟のスキルタイプ選択コマンド消去の競合でAPビューアーが見られないのを解消したい

投稿記事by TOMO » 2020年10月04日(日) 17:09

多分これで可能です

コード: 全て選択

class Scene_SkillApView
  #--------------------------------------------------------------------------
  # ● 開始処理
  #--------------------------------------------------------------------------
  def start
    super
    create_help_window
    create_command_window
    create_status_window
    create_item_window
  end
  #--------------------------------------------------------------------------
  # ● ステータスウィンドウの作成
  #--------------------------------------------------------------------------
  def create_status_window
    y = @help_window.height
    @status_window = Window_SkillStatus.new(@command_window.width, y)
    @status_window.viewport = @viewport
    @status_window.actor = @actor
  end
  #--------------------------------------------------------------------------
  # ● アイテム[キャンセル]
  #--------------------------------------------------------------------------
  def on_item_cancel
    @item_window.unselect
    @command_window.activate
  end
  #--------------------------------------------------------------------------
  # ● アクターの切り替え
  #--------------------------------------------------------------------------
  def on_actor_change
    @command_window.actor = @actor
    @status_window.actor = @actor
    @item_window.actor = @actor
    @command_window.activate
  end
end

星潟様ので上書きされたScene_Skillの元の処理をコピペしただけです

“VX / Ace:スクリプト素材のリクエスト” へ戻る