Search found 35 matches

by gamajorbatistan
Sat Jun 16, 2018 8:26 am
Forum: Ren'Py Questions and Announcements
Topic: Animated lips and eye blink help!
Replies: 10
Views: 1952

Animated lips and eye blink help!

Been failing at implementing this for quite a while now and finally figured I should probably just ask for help. My impression is that while a little bit complicated, once the process of implementing this is figured out it can be pretty much replicated for any amount of characters and assets so I'm ...
by gamajorbatistan
Thu Mar 15, 2018 7:40 am
Forum: Ren'Py Questions and Announcements
Topic: Strange crash upon finishing game (return)
Replies: 6
Views: 664

Re: Strange crash upon finishing game (return)

Yes! I had a bunch of lower case dissolves in my options file. You still helped me out with this one! Thank you so much!
by gamajorbatistan
Thu Mar 15, 2018 7:38 am
Forum: Ren'Py Questions and Announcements
Topic: Strange crash upon finishing game (return)
Replies: 6
Views: 664

Re: Strange crash upon finishing game (return)

Donmai wrote: Wed Mar 14, 2018 9:15 pm Try

Code: Select all

define slowdissolve = Dissolve(2.0)
dindu nuffin :(
could it be something in my options that broke it??
by gamajorbatistan
Wed Mar 14, 2018 6:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange crash upon finishing game (return)
Replies: 6
Views: 664

Re: Strange crash upon finishing game (return)

Now I get the error too when I try to access preferences. Damnit.
by gamajorbatistan
Wed Mar 14, 2018 6:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange crash upon finishing game (return)
Replies: 6
Views: 664

Re: Strange crash upon finishing game (return)

Hm this is what it looks like. And it works alright throughout earlier parts of the game. Confusing stuff :|

Code: Select all

    define fastdissolve = Dissolve(.3)
    define meddissolve = Dissolve(.6)
    define slowdissolve = Dissolve(2)    
by gamajorbatistan
Wed Mar 14, 2018 5:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange crash upon finishing game (return)
Replies: 6
Views: 664

Strange crash upon finishing game (return)

Here's the full error log: I'm sorry, but an uncaught exception occurred. While running game code: TypeError: 'Dissolve' object is not callable -- Full Traceback ------------------------------------------------------------ File "renpy/common/_layout/screen_main_menu.rpym", line 28, in scri...
by gamajorbatistan
Wed Mar 14, 2018 5:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Stop dialogue box from being hidden during choice?
Replies: 4
Views: 728

Stop dialogue box from being hidden during choice?

This is what my choice code looks like label menu01: menu: "Man, Tracer's a weirdo when she's alone...": jump weirdo with slowdissolve "Poor Tracer just had a rough day...": jump roughday with slowdissolve pretty normal, beginner choice code I'd say. However since that's where th...
by gamajorbatistan
Sun Mar 04, 2018 2:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2174

Re: Can't move a character?

I think I figured it out. It was indeed related to anchors. Once I set them properly (which the documentation doesn't even attempt to showcase) things work as intended.

Code: Select all

    show dudebro at fullleft:
        xanchor 0.5 yanchor 0.5
Thanks for help nonetheless!
by gamajorbatistan
Sun Mar 04, 2018 2:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2174

Re: Can't move a character?

Testing some stuff and, is it possible that RenPy does not treat the image middle point as its 'origin' ? Does it somehow change the image 'origin' on a wim inbetween lines of code? Something like that has to be going on.
by gamajorbatistan
Sun Mar 04, 2018 2:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2174

Re: Can't move a character?

The exact same code in a different test game works perfectly. And in my stupid fucking game it just ignores it. What in gods cock? I'm so done with this.
by gamajorbatistan
Sun Mar 04, 2018 1:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2174

Re: Can't move a character?

If I have a character appear, like so show dudebro right and then I make this show dudebro left is that how I make dudebro transition from the right to the left? or would that spawn a second dudebro? obviously for me it doesn't do anything because nothing works for me but I'm struggling to even figu...
by gamajorbatistan
Sun Mar 04, 2018 1:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2174

Re: Can't move a character?

The bits of code you have shown will work just fine if you put them in the right part. We can only guess what the problem is, but it is not in the code we can see. I see your transform has an indentation it shouldn't have. Are you defining transforms inside a label? When the game starts, renpy load...
by gamajorbatistan
Sun Mar 04, 2018 11:23 am
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2174

Re: Can't move a character?

Really confused now... I added something seemingly irrelevant. Now RenPy properly notices the defined image. Then I delete that same seemingly irrelevant bit of code, and now RenPy still notices the defined image. But it didn't do so before adding and deleting the irrelevant code. Is that even possi...
by gamajorbatistan
Sun Mar 04, 2018 10:57 am
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2174

Re: Can't move a character?

Well, thanks for helping me out. But boohoo who would have thought, it's not working. It's now telling me that my image is not defined. It is though. Funny how things are with RenPy. 'show dudebro at center' works just fine in line 470 and then suddenly in 484 'show dudebro at slightleft' gives me H...