기타

Lock Screen

by 비극ㆍ posted Apr 19, 2010
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

#===============================================================
# ? [VX Snippet] ? Lock Screen ? ?
# * Lock/Unlock screen from scroll with switch~ *
#--------------------------------------------------------------
# ? by Woratana [woratana@hotmail.com]
# ? Thaiware RPG Maker Community
# ? Released on: 02/06/2008
# ? Version: 1.0
#--------------------------------------------------------------

#==================================================================
# ** HOW TO USE **
#-----------------------------------------------------------------
# * Set the switch ID you want to use to lock/unlock screen in SETUP part.
# * Turn that switch ON/OFF to LOCK/UNLOCK screen.
#==================================================================

class Game_Map
  #==========================================================
  # * [START] LOCK SCREEN SCRIPT SETUP
  #----------------------------------------------------------
  LOCK_SWITCH_ID = 1
  # Switch to LOCK/UNLOCK screen. (turn this switch ON to LOCK)
  #----------------------------------------------------------
  # * [END] LOCK SCREEN SCRIPT SETUP
  #==========================================================
 
  # List all the methods that use for scroll
  AM = [:scroll_up, :scroll_down, :scroll_left, :scroll_right]
  AM.each do |m|
new_m = 'wora_lockscr_gammap' + m.to_s # Create new name
alias_method(new_m, m) unless method_defined?(new_m)  # Alias the method
  # Create script
ascript = <<_SCRIPT_
def #{m} (*args)
  return if $game_switches[#{LOCK_SWITCH_ID}]
  #{new_m} (*args)
end
_SCRIPT_
eval(ascript) # Run script
  end
end

저 위의 스위치 번호 바꾸고, 그 스위치르 키면 화면정지될겁니다(아마도....)

출처:rmrk