Search found 8 matches

by scarecrow-76
Wed Oct 26, 2022 8:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Do I need to crop imagebuttons? (solved)
Replies: 2
Views: 331

Re: Do I need to crop imagebuttons?

Yeah, the button is the correct size. What I was trying to do was a gamemap with several locations, and you're correct. I managed to put twenty imagebuttons all 1920 x 1080 with transparency on top of each other, and it works perfectly. Saved me a lot of time and hassle not having to crop and figure...
by scarecrow-76
Wed Oct 26, 2022 12:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Do I need to crop imagebuttons? (solved)
Replies: 2
Views: 331

Do I need to crop imagebuttons? (solved)

Quick noob question. Can I just keep my png imagebuttons at 1920 x 1080 to save time? Or is this problematic with overlaying other buttons, even with transparent backgrounds? Is it to save on file size? Thanks. Just wondering, so I didnt have to deal with finding the correct x/y pos.
by scarecrow-76
Wed Oct 26, 2022 12:05 pm
Forum: General Discussion
Topic: Cant Imagebutton PNG stay at 1920 x 1080?
Replies: 1
Views: 1807

Cant Imagebutton PNG stay at 1920 x 1080?

Quick noob question. I see imagebutton are cropped and then correctly positioned in Renpy. Cant I just leave it at 1920 x 1080 with a transparent background? Reason being that it will already be in the correct position when saved from CS and if there's going to be a lot of them, it saves time. Or is...
by scarecrow-76
Mon Oct 24, 2022 4:26 pm
Forum: General Discussion
Topic: Help with simple calender. Please. (Solved)
Replies: 2
Views: 1768

Re: Help with simple calender. Please.

You're using Day (of the week) instead of the Day s variable that counts days of the month: while GameRunning: $ Output = Months[Month] + ". " + str(Day+1) + ", " + WeekDays[Day] + " " + TimeDays[TimeDay] #+ " " + str(Hours) + ":" + str(Minutes) Cha...
by scarecrow-76
Mon Oct 24, 2022 12:01 pm
Forum: General Discussion
Topic: Help with simple calender. Please. (Solved)
Replies: 2
Views: 1768

Help with simple calender. Please. (Solved)

Following Game Developer Training on youtube and coded a calendar. Changed a few things. So instead of minutes and hours, it goes from morning, afternoon, evening, to night. Everything works well enough. But when it reaches the end of the week, the date doesn't go to Mon the 8th. Instead it goes to ...
by scarecrow-76
Tue Nov 23, 2021 6:24 pm
Forum: Ren'Py Questions and Announcements
Topic: ImageButton not showing idle or hover
Replies: 4
Views: 432

Re: ImageButton not showing idle or hover

Yup, that seemed to be what was happening. So I decided to add an extra image of the area with fallville appearing over that one, then dissolving into the close-up of the cart with the image button. Actually works much better as an intro to the area. Thanks so much for taking the time. I've been rea...
by scarecrow-76
Tue Nov 23, 2021 3:41 pm
Forum: Ren'Py Questions and Announcements
Topic: ImageButton not showing idle or hover
Replies: 4
Views: 432

Re: ImageButton not showing idle or hover

Thank you so much. It mostly worked. But the other problems were my mistake. I didnt have the image buttons artwork as "define", I had them as "image". Also, the main reason it seemed to give me trouble was that I had the Fallville text appear on the side for 3 seconds, but didnt...
by scarecrow-76
Tue Nov 23, 2021 12:02 pm
Forum: Ren'Py Questions and Announcements
Topic: ImageButton not showing idle or hover
Replies: 4
Views: 432

ImageButton not showing idle or hover

Hi everyone, a really noob question here. I've spent the last few days trying to figure this out before asking anyone here. Basically, I'm having trouble setting up an image button. The good news is that I finally got it to work with no errors, but the idle and hover states are not being displayed. ...