Advertisement
neonblack

opacity

Aug 5th, 2012
1,820
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.19 KB | None | 0 0
  1. class Window_Base < Window
  2.   alias solidify_initialize initialize
  3.   def initialize(x, y, width, height)
  4.     solidify_initialize(x, y, width, height)
  5.     self.back_opacity = 255
  6.   end
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement