Advertisement
strelokhalfer

alice

Jan 30th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.42 KB | None | 0 0
  1. #Если титульник
  2. class Window_TitleCommand < Window_Command
  3.   alias halfer_alice_initialize initialize
  4.   def initialize
  5.     halfer_alice_initialize
  6.     self.back_opacity = 255
  7.   end
  8. end
  9.  
  10. #если все
  11. class Window_Base < Window
  12.   alias halfer_alice_initialize initialize
  13.   def initialize(x, y, width, height)
  14.     halfer_alice_initialize(x, y, width, height)
  15.     self.back_opacity = 255
  16.   end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement