Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
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 Melana 13 15,687 01-18-2018, 05:49 AM
Last Post: DerVVulfman
   Game Performance Melana 21 19,440 11-24-2016, 03:42 AM
Last Post: finalholylight
   Showing only specific skills in a window Melana 2 5,400 01-12-2016, 01:34 PM
Last Post: Melana
   Game Variables List for Copy/Paste JayRay 4 6,318 01-15-2015, 06:18 AM
Last Post: JayRay
   [RMXP]Game Over and Atoa Battle Status mishaps firestalker 8 9,816 08-07-2014, 01:59 AM
Last Post: firestalker
   [Brainstorming] Pallete Changing. MechanicalPen 6 6,843 02-14-2014, 09:46 PM
Last Post: DerVVulfman
   Help with changing background music volume JackMonty 7 8,552 12-10-2012, 10:59 AM
Last Post: JackMonty
   Something I noticed about the Advanced Shop Status Window yamina-chan 5 9,174 08-21-2011, 09:16 PM
Last Post: yamina-chan
   [Atoa SBS] Changing the command window font MegaPowerNinja 3 7,649 04-12-2011, 10:23 PM
Last Post: Victor Sant
   Repositioning the actor command window. MegaPowerNinja 4 8,636 04-12-2011, 05:21 AM
Last Post: MegaPowerNinja



Users browsing this thread: