The Good King
Member
How do I call an instance variable from a window? like @commands?
To elaborate, I added a style argument to Window_Command to add the ability for a command window to display options in alternating order and the display of it works fine.
Now I have to recode the cursor, which brings up the problem with columns. In the original there is only ever one column of choices, so of course the original makers had it = 1 w/o thought to add functionability for aditional columns. However, in my model there are two. I created a @style instance variable for the argument style in Window_Command, so how do I bring that variable into Window_Selectable to vary the # of columns?
To elaborate, I added a style argument to Window_Command to add the ability for a command window to display options in alternating order and the display of it works fine.
NORMAL DISPLAY
-----------------
1
2
3
4
ALTERNATING DISPLAY
----------------------
1 2
3 4
-----------------
1
2
3
4
ALTERNATING DISPLAY
----------------------
1 2
3 4