Search found 12 matches

by Sugar_and_rice
Wed Apr 24, 2024 7:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Issue with layered images
Replies: 1
Views: 300

Issue with layered images

Hey guys! For some reason, I am having trouble making layered images work. I've read through the documentation on this but I must be messing up how I set it up somehow as it just isn't working for me. Any combination of attributes result in some form of "Exception: Image 'kazuki eyes_mad' does ...
by Sugar_and_rice
Tue Sep 12, 2023 11:39 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Flipping an image on an axis
Replies: 2
Views: 415

Re: Flipping an image on an axis

_ticlock_ wrote: Tue Sep 12, 2023 11:04 am 2) Or you can simply offset the image by its width. You need to specify the width in this case.

Code: Select all

transform flip(x_offset):
    xzoom 1.0 xoffset 0
    linear 1.0 xzoom -1.0 xoffset x_offset
Using xoffset worked perfectly! Thank you so much!
by Sugar_and_rice
Mon Sep 11, 2023 9:43 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Flipping an image on an axis
Replies: 2
Views: 415

[SOLVED] Flipping an image on an axis

Hey guys! So I am trying to figure out which transform property would allow me to flip an image on an axis, and I've been struggling. To explain better, I drew what I want (please excuse the crude drawing lol): renpyhelp1.png I've edited a bunch of different transform properties but I just can't see...
by Sugar_and_rice
Tue Sep 05, 2023 6:06 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Passing arguments in Call action
Replies: 1
Views: 312

[SOLVED] Passing arguments in Call action

Hey guys! Silly question: how do I pass arguments using action Call()?

Code: Select all

        key trigger_key action Call('reel_in')
        # this works, but I need to pass an argument like "call reel_in(fish_size)"
by Sugar_and_rice
Tue Feb 21, 2017 5:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Re: Custom Name error

OMG THANK YOU SO MUCH! Legacy Theme Interface worked!! you are a life saver!
by Sugar_and_rice
Tue Feb 21, 2017 5:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Re: Custom Name error

wait so it is a bug or am I typing something wrong? this is so confusing but thank you everyone who has helped me so far :)
by Sugar_and_rice
Tue Feb 21, 2017 5:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Re: Custom Name error

so like this? or no brackets around the other name too? define e = Character("name", dynamic=True) label start: $ name = renpy.input("What is your name?") $ name = name.strip() if name == "": $ name="You" "Pleased to meet you, [name]!" e "This i...
by Sugar_and_rice
Tue Feb 21, 2017 5:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Re: Custom Name error

I'm sorry I'm a little confused... so I just remove all the brackets? It still doesn't work :(
by Sugar_and_rice
Tue Feb 21, 2017 5:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Re: Custom Name error

oh it's a bug?? that sucks... is there any way I can download a 6.11? or should I just re-install the new version again?
by Sugar_and_rice
Tue Feb 21, 2017 4:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Re: Custom Name error

here's the full thing: I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 8, in script $ name = renpy.input("What is your name?") File "game/script.rpy", line 8, in <module> $ name = renpy.input("What is your name?&...
by Sugar_and_rice
Tue Feb 21, 2017 4:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Re: Custom Name error

thank you for the suggestion, but unfortunately it still didn't work :( I'm thinking something is wrong with the actual program... maybe I should try an re-install it?
by Sugar_and_rice
Tue Feb 21, 2017 3:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Name error
Replies: 19
Views: 3219

Custom Name error

I'm really frustrated. I've looked through forums, youtube, websites, tutorials, everything to find an answer but I have yet to find one. Whenever I try to type in code to let the player choose their own name, i always get this error: AttributeError 'StoreModule' object has no attribute 'dialogue_xa...