- Joined
- Jun 21, 2015
- Messages
- 1,441
- Reaction score
- 680
- First Language
- Polish
- Primarily Uses
- Other
Hello everybody,
I have posted that question before in Ruby/RGSSx questions that don't deserve their own thread, but I realized it'll be actually more complicated, than I thought, so I decided to create a thread for it.
So basically, I want to resize actor statuses of reserve members.
I want to change that:
into something like this:
I realized that my description was not clear, sorry:
Q: How can I replace the whole drawing actor simple status method for reserve party members? (Not how to setup 'compact-size' window for them =P )
A: condition: 'if index < 2' answers that question, because I know how to do the rest.
The problem, that also came was:
Q: How to resize select rectangle when selecting character?
A:
def item_rect(index) if index < 2 # set the rect for the first two actors here. else # set the rect for the other members here. endendPossible workaround would be to create a separate window for that, where I could manually draw them. (Probably I know how to do that, unless it's more complicated than I think). But it would be better to have that in one window, so it would also be shown in items scene (when using items).
If that would be a really complicated process, then I'll simply create a second window for that.
Any suggestions?
I'm fine for now, if there'll be any more problems, then I'll ask.
@KockaAdmiralac_FINALLY & @Sixth Thank you for help!
I have posted that question before in Ruby/RGSSx questions that don't deserve their own thread, but I realized it'll be actually more complicated, than I thought, so I decided to create a thread for it.
So basically, I want to resize actor statuses of reserve members.
I want to change that:
into something like this:
Q: How can I replace the whole drawing actor simple status method for reserve party members? (Not how to setup 'compact-size' window for them =P )
A: condition: 'if index < 2' answers that question, because I know how to do the rest.
The problem, that also came was:
Q: How to resize select rectangle when selecting character?
A:
def item_rect(index) if index < 2 # set the rect for the first two actors here. else # set the rect for the other members here. endend
I'm fine for now, if there'll be any more problems, then I'll ask.
@KockaAdmiralac_FINALLY & @Sixth Thank you for help!
Last edited by a moderator:
