Accessing fitting_height method

● ARCHIVED · READ-ONLY
Started by Rime 3 posts View original ↗
  1. Is there a way to call the fitting_height method of Window_Base without creating a < Window_Base subclass and without overwriting?

    Also, what's the difference between refresh and update methods in the Window classes?
  2. I'm not sure how to answer the first question. You need to create the instance of Window_Base (or its subclasses) and call the function. fitting_height mainly aimed to calculate window height when you're making window.

    For the second question

    Update is updating the window, like blinking cursor or opening / closing animation

    While refresh is to refresh the contents if need to be changed. Like information update.
  3. Thanks Theo. As usual XD