Auteur: Yukihiro matsumoto
#============================================
# ‘ Scene_Status
#----------------------------------------------
# @Xe[^XζΚΜπs€NXΕ·B
#============================================
class Scene_Status
#------------------------------------------
# IuWFNgϊ»
# actor_index : AN^[CfbNX
#------------------------------------------
def initialize(actor_index = 0, equip_index = 0)
@actor_index = actor_index
end
#------------------------------------------
# C
#------------------------------------------
def main
# AN^[πζΎ
@actor = $game_party.actors[@actor_index]
# Xe[^XEBhEπμ¬
@status_window = Window_Status.new(@actor)
# gWVΐs
Graphics.transition
# C[v
loop do
# Q[ζΚπXV
Graphics.update
# όΝξρπXV
Input.update
# t[XV
update
# ζΚͺΨθΦνΑ½η[vπf
if $scene != self
break
end
end
# gWVυ
Graphics.freeze
# EBhEππϊ
@status_window.dispose
end
#------------------------------------------
# t[XV
#------------------------------------------
def update
# B {^ͺ³κ½κ
if Input.trigger?(Input::B)
# LZ SE πt
$game_system.se_play($data_system.cancel_se)
# j
[ζΚΙΨθΦ¦
$scene = Scene_Menu.new(3)
return
end
# R {^ͺ³κ½κ
if Input.trigger?(Input::R)
# J[ SE πt
$game_system.se_play($data_system.cursor_se)
# ΜAN^[Φ
@actor_index += 1
@actor_index %= $game_party.actors.size
# ΚΜXe[^XζΚΙΨθΦ¦
$scene = Scene_Status.new(@actor_index)
return
end
# L {^ͺ³κ½κ
if Input.trigger?(Input::L)
# J[ SE πt
$game_system.se_play($data_system.cursor_se)
# OΜAN^[Φ
@actor_index += $game_party.actors.size - 1
@actor_index %= $game_party.actors.size
# ΚΜXe[^XζΚΙΨθΦ¦
$scene = Scene_Status.new(@actor_index)
return
end
end
end |
|