Changing Window Styles in Game
#2
Oh it's you again! Hi!


I played around with this a bit, and noticed that the windowskin of one of my custom windows didn't change either. Then I found this in Window_Base:
Code:
#--------------------------------------------------------------------------
  # * Frame Update
  #--------------------------------------------------------------------------
  def update
    super
    # Reset if windowskin was changed
    if $game_system.windowskin_name != @windowskin_name
      @windowskin_name = $game_system.windowskin_name
      self.windowskin = RPG::Cache.windowskin(@windowskin_name)
    end
  end

And I figured out what I need to do. If you window has an 'update' method, make sure it calls 'super' at the end of it. That way it will run Window_Base's 'update' and properly change the windowskin.
Reply }


Messages In This Thread
Changing Window Styles in Game - by JackMonty - 03-09-2013, 12:07 PM
RE: Changing Window Styles in Game - by MechanicalPen - 03-09-2013, 10:57 PM
RE: Changing Window Styles in Game - by JackMonty - 03-11-2013, 12:26 AM
RE: Changing Window Styles in Game - by JackMonty - 03-19-2013, 02:36 PM
RE: Changing Window Styles in Game - by JackMonty - 03-21-2013, 11:54 PM
RE: Changing Window Styles in Game - by JackMonty - 03-22-2013, 11:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Sorting Items in Shop Window Mel 13 17,667 01-18-2018, 05:49 AM
Last Post: DerVVulfman
   Game Performance Mel 21 22,456 11-24-2016, 03:42 AM
Last Post: finalholylight
   Showing only specific skills in a window Mel 2 5,887 01-12-2016, 01:34 PM
Last Post: Mel
   Game Variables List for Copy/Paste JayRay 4 7,005 01-15-2015, 06:18 AM
Last Post: JayRay
   [RMXP]Game Over and Atoa Battle Status mishaps firestalker 8 10,935 08-07-2014, 01:59 AM
Last Post: firestalker
   [Brainstorming] Pallete Changing. MechanicalPen 6 7,761 02-14-2014, 09:46 PM
Last Post: DerVVulfman
   Help with changing background music volume JackMonty 7 9,461 12-10-2012, 10:59 AM
Last Post: JackMonty
   Something I noticed about the Advanced Shop Status Window yamina-chan 5 9,976 08-21-2011, 09:16 PM
Last Post: yamina-chan
   [Atoa SBS] Changing the command window font MegaPowerNinja 3 8,323 04-12-2011, 10:23 PM
Last Post: Victor Sant
   Repositioning the actor command window. MegaPowerNinja 4 9,391 04-12-2011, 05:21 AM
Last Post: MegaPowerNinja



Users browsing this thread: 1 Guest(s)