- Joined
- Oct 8, 2015
- Messages
- 215
- Reaction score
- 83
- First Language
- English
- Primarily Uses
- RMMV
.
Last edited:
class Window_MenuCommand < Window_Command
#--------------------------------------------------------------------------
# * Refresh
#--------------------------------------------------------------------------
alias r2_refresh_9b9vb24v refresh
def refresh
r2_refresh_9b9vb24v
$game_system.cursor_animation_visible = false
end
alias r2_process_ok_8gf38f process_ok
def process_ok
r2_process_ok_8gf38f
$game_system.cursor_animation_visible = true
end
end
class Window_RingStatus < Window_Selectable
#--------------------------------------------------------------------------
# * Refresh
#--------------------------------------------------------------------------
alias r2_refresh_929fbfe123 refresh
def refresh
r2_refresh_929fbfe123
$game_system.cursor_animation_visible = false
end
#--------------------------------------------------------------------------
# * Processing When OK Button Is Pressed
#--------------------------------------------------------------------------
alias r2_process_ok_929gu process_ok
def process_ok
r2_process_ok_929gu
$game_system.cursor_animation_visible = true
end
end
class Window_ChoiceList < Window_Command
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
alias r2_choice_start_87g31f start
def start
r2_choice_start_87g31f
$game_system.cursor_animation_visible = true
end
end
class Window_GameEnd < Window_Command
alias r2_game_end_init_87723bf initialize
def initialize
r2_game_end_init_87723bf
$game_system.cursor_animation_visible = true
end
end
class Window_TitleCommand < Window_Command
alias r2_init_title_723b initialize
def initialize
r2_init_title_723b
$game_system.cursor_animation_visible = true
end
end
Not necessary. Same issue as before. Just a matter of working out these bugs.a new thread
It's all working for me. Might need your demo to see what's going on.the cursor didn't show
class Window_TitleCommand < Window_Command
alias r2_init_title_723b initialize
def initialize
r2_init_title_723b
$game_system.cursor_animation_visible = true
end
end