Search found 9 matches
- Thu Aug 13, 2020 9:33 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Define Images After Initialization?
- Replies: 2
- Views: 261
Re: Define Images After Initialization?
I'll be damned. Much easier and it works! Thanks!
- Wed Aug 12, 2020 11:20 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Define Images After Initialization?
- Replies: 2
- Views: 261
[SOLVED] Define Images After Initialization?
There may also be an easier way to do this, but this is the route my brain took. So the opening of the game goes like so- label start: "Choose your appearance!" call screen character_select Then said screen look like so... screen character_select: grid 5 2: imagebutton auto "MC/01MCNeutral1Uniform_%...
- Fri May 15, 2020 2:57 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [RESOLVED] Images appearing at center instead of left/right when skipping or clicking fast
- Replies: 5
- Views: 308
Re: [RESOLVED] Images appearing at center instead of left/right when skipping or clicking fast
Also received the same issue doing that as well. We have a few characters that are larger than the rest and as such they have specific definitions for left and right, which caused the same issue. Having it be present in the core files seems to alleviate the issue. If an update changes it, I can upda...
- Thu May 14, 2020 2:45 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [RESOLVED] Images appearing at center instead of left/right when skipping or clicking fast
- Replies: 5
- Views: 308
Re: Images appearing at center instead of left/right when skipping or clicking fast
Fixed it, it was due to us trying to add in a new definition for 'left' and 'right' and for whatever reason, that was causing some sort of issue. So instead, I just went into the 00definitions.rpy file and adjusted the transforms directly to fit with the scope of our game and that seemed to fix it. ...
- Wed May 13, 2020 4:01 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [RESOLVED] Images appearing at center instead of left/right when skipping or clicking fast
- Replies: 5
- Views: 308
Re: Images appearing at center instead of left/right when skipping or clicking fast
The characters can appear on the left or right (or center, but that seems to be where they flock to anyway), so while that is a possible solution, it would probably result in 2 definitions per character which, while not ideal, would at least work in the meantime.
- Wed May 13, 2020 3:05 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [RESOLVED] Images appearing at center instead of left/right when skipping or clicking fast
- Replies: 5
- Views: 308
[RESOLVED] Images appearing at center instead of left/right when skipping or clicking fast
Kind of a long title, but I wanted to make sure people knew the question before clicking on it. Anyway, kind of a weird issue that I hadn't really noticed in the game I'm working on until I'd gotten to the point where I started skipping through dialogue. Basically, whenever I use the 'skip' option o...
- Wed Jul 03, 2019 8:48 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Resolved] Using the '@' code per the Ren'Py Documentation
- Replies: 6
- Views: 744
- Wed Jul 03, 2019 1:53 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Resolved] Using the '@' code per the Ren'Py Documentation
- Replies: 6
- Views: 744
Re: Using the '@' code per the Ren'Py Documentation
Not as far as I know : / I've tried- ja @ 2 ja @ neutral 2 ja @ uniform neutral 2 And it comes back with 'expected statement' So for now I'll just toggle it with show jack 2 ja blah blah show jack 1 I suppose. It also didn't seem to work (I copied it verbatim) for the example listed so maybe the fun...
- Mon Jul 01, 2019 11:59 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Resolved] Using the '@' code per the Ren'Py Documentation
- Replies: 6
- Views: 744
[Resolved] Using the '@' code per the Ren'Py Documentation
Hey all- I've been tearing my hair out over at this for awhile and finally broke down to ask for some assistance. It's entirely possible that it's something that I'm missing in my understanding of how something is supposed to work, or perhaps it doesn't work as written, or some combination thereof. ...