Simple question I think. I'm trying to change the position of text windows during scenes, and the super command seems to be ignoring my y value.
I'm using the default window script and I'm going to the Window_Message class to change the super(x,y,height,width) values. The function is using all of my values except the y value. No matter what I put in there, the window doesnt budge.
Some examples I tried
super(224, 192, 192, 64)
super(224, 0, 192, 64)
super(224, 400, 192, 64)
All these result in the window being anchored to the same y position.
I'm using the default window script and I'm going to the Window_Message class to change the super(x,y,height,width) values. The function is using all of my values except the y value. No matter what I put in there, the window doesnt budge.
Some examples I tried
super(224, 192, 192, 64)
super(224, 0, 192, 64)
super(224, 400, 192, 64)
All these result in the window being anchored to the same y position.