Search found 5 matches

by ThicBit
Sat May 21, 2022 3:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Blinking screen effect
Replies: 10
Views: 6479

Re: Blinking screen effect

Would it be okay if I used this code and the image in my game????
by ThicBit
Tue May 10, 2022 4:58 pm
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Side Image with custom name
Replies: 7
Views: 3355

Re: (PLEASE HELP) Side Image with custom name

OMGGGGG I GOT IT TO WORK!!!

It was indeed a sizing issue. My side image was the same resolution as my game. I switched the size down to about 400x400 and it works perfectly now.

Thank you guys so much!
by ThicBit
Tue May 10, 2022 3:55 pm
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Side Image with custom name
Replies: 7
Views: 3355

Re: (PLEASE HELP) Side Image with custom name

define m = Character("[name]", image="m") label start: default name = "Nim" $ name = renpy.input("What's your name?", default="Nim", length=20) pause 3 show bedroom m happy "My name is [name]" Okay so I made the changes, and It seems like ...
by ThicBit
Tue May 10, 2022 12:13 am
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Side Image with custom name
Replies: 7
Views: 3355

Re: (PLEASE HELP) Side Image with custom name

Okay so i named everything better so now it looks like this: define m = Character("[name]", image="nim") default m = "Nim" $ m = renpy.input("What's your name?", default="Nim", length=20) image define nim happy = "side_nim_happy.png" image ...
by ThicBit
Mon May 09, 2022 10:43 pm
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Side Image with custom name
Replies: 7
Views: 3355

(SOLVED) Side Image with custom name

Hello everyone! I am VERY new when it comes to making games with Renpy. I am having a blast so far, but I have come across an issue that I can't seem to fix. I want to display a side image for my main character, but it doesn't seem to work, and I think it's because my character has a custom name.......