Search found 12 matches

by Hikari_Kaitou
Mon Oct 16, 2023 9:27 am
Forum: I am a Programmer, Director, or Other
Topic: [PAID]Programmer looks for work
Replies: 15
Views: 12492

Re: [PAID]Programmer looks for work

I hired Shie for help with programming my game and they were lovely to work with. Very fast work and very communicative, good at taking direction and implementing my requests. Thank you very much for your hard work :)
by Hikari_Kaitou
Wed Sep 20, 2023 10:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

Someone helped me figure out the problem. My hover and idle images didn't need all that transparent space. After cropping the images down, they fit on the screen properly. Thank you to everyone who advised me!
by Hikari_Kaitou
Wed Sep 20, 2023 4:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

Alex wrote: Wed Sep 20, 2023 4:18 pm
Hikari_Kaitou wrote: Wed Sep 20, 2023 2:55 pm ...
So, what about size of those 'forest' images?
All my images are 1200 x 1080. The hovered and idle images are completely transparent, except for the affected areas.
by Hikari_Kaitou
Wed Sep 20, 2023 2:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

Every time I create a second button, it overwrites the first button's function. ... What's the size of your imagebuttons - any chance that they are overlap each other (as Ocelot pointed)? How do you positioning them (are they inside a v/hbox, grid or have individual coordinates)? Here's my code scr...
by Hikari_Kaitou
Wed Sep 20, 2023 1:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Inventory error
Replies: 3
Views: 351

Re: Inventory error

There is a typo in the class. The argument is called "item", but then you want to set self.items to "items". There is no variable (globally and locally) with that name. That's what the Renpy error is stating. Some hints for you: 1. Don't put your "default" and "de...
by Hikari_Kaitou
Wed Sep 20, 2023 12:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Inventory error
Replies: 3
Views: 351

Inventory error

So I tried following this youtube tutorial on inventory coding but I'm getting an error message. Snipaste_2023-09-20_11-43-56.png init python: class Inventory(): def __init__(self, item, no_of_items): self.items = items self.no_of_items = no_of_items def add_item(self, item): self.items.append(item)...
by Hikari_Kaitou
Tue Sep 19, 2023 4:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

Every time I create a second button, it overwrites the first button's function. I don't understand. I've already created four imagebuttons successfully on a different screen and they work just fine. These new imagebuttons look the same coding-wise but they don't work...
by Hikari_Kaitou
Tue Sep 19, 2023 4:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

I'm not getting an error message, so hopefully that means the spacing is ok?
by Hikari_Kaitou
Tue Sep 19, 2023 2:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

First two buttons might as well be not present. Third ove will be drawn over them and prevent them from ever working. I see, so how do I fix that? Depending on what you need, wrap them in hbox/vbox to lay them out horisontally/vertically or just provide them their positions with xpos/ypos or xalign...
by Hikari_Kaitou
Tue Sep 19, 2023 11:11 am
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

Imperf3kt wrote: Tue Sep 19, 2023 3:57 am In addition to the above, your indentation is not right, you are using 8 spaces, but you should be using 4
Does incorrect spacing prevent the code from functioning?
by Hikari_Kaitou
Tue Sep 19, 2023 11:07 am
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Re: Unresponsive image buttons

Ocelot wrote: Tue Sep 19, 2023 12:39 am First two buttons might as well be not present. Third ove will be drawn over them and prevent them from ever working.
I see, so how do I fix that?
by Hikari_Kaitou
Mon Sep 18, 2023 10:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Unresponsive image buttons [SOLVED]
Replies: 14
Views: 5050

Unresponsive image buttons [SOLVED]

Hello everyone, I'm new here and new to RenPy and I'm having kind of a strange problem. I suddenly can't get my image buttons to function. The hover states don't work and they don't perform the action I've programmed them to. There are no error reports, it simply doesn't work. I followed a video tut...