Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.
You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
HBGames
I have a window class that inherits from Window_Selectable. Let it be Window_Mine.
So Window_Mine < Window_Selectable < Window_Base.
I wanted to know if there is a way to call the update method of the class Window_Base from inside the update method of Window_Mine without using "super", since I don't want the Window_Selectable update code to be executed and i want to jump to Window_Base. I was thinking to something like Window_Class::update...Â