Search found 6 matches

by inkacorn
Thu Jan 25, 2024 2:29 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with my dress up game
Replies: 1
Views: 643

Re: Help with my dress up game

try adjusting the parameters in the image buttons instead for example: # Minigame screen outfits_ui: image "Minigame/bg.png" imagebutton auto "Minigame/done_%s.png" align(1.0, 0.5) action Jump("instructions") # 1.0 xalign is right on the x axis and 0.5 yalign is center ...
by inkacorn
Thu Jan 25, 2024 1:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Moving Ren’Py game saves between computers
Replies: 2
Views: 581

Re: Moving Ren’Py game saves between computers

the problem may be from a couple things. you're adding these saves from an older version of the game to a newer version you're not copying the persistent files and/or folder you already have the game as a folder in the renpy folder could you share your exact step by step process so we can see what w...
by inkacorn
Tue Jan 23, 2024 6:43 pm
Forum: Ren'Py Cookbook
Topic: How to add gradients to text
Replies: 0
Views: 1118

How to add gradients to text

Edit 3/14/23: Updated code and fixed text tag bug https://i.ibb.co/37NJ9tB/Capture4.png https://i.ibb.co/RC2JCR3/image.png This was heavily inspired by Wattson's Kinetic Text Tags which covers horizontal gradient text tags. A drawback discovered with the original gradient tag was when using it on s...
by inkacorn
Fri Jan 05, 2024 7:39 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Issue with importing BMFonts
Replies: 1
Views: 64708

[SOLVED] Issue with importing BMFonts

howdy, ive been having some issues with importing a custom fnt file into renpy. looking through this document about registering bmfonts , i used the BMFonts tool linked to create my custom font which was exported as an .fnt file. however, renpy seems to have a problem whenever i try to implement my ...
by inkacorn
Fri Dec 01, 2023 7:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Show faces in history?
Replies: 16
Views: 3562

Re: Show faces in history?

... Wow! Could you upload a little example so that users like me can try it out? I'm not firm with python classes but I can imagine that there is a solution not to always write default. Perhaps this can even be solved in the callback function. But I need to fiddle with it :D absolutely! i had to fi...
by inkacorn
Thu Nov 30, 2023 11:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Show faces in history?
Replies: 16
Views: 3562

Re: Show faces in history?

EDIT 12/1/23 - Updated code and clarity was looking for an answer to this question and saw this problem was (seemingly) unsolved. i did eventually find an answer so ill be posting it here. apologies in advance for the absolute mess of code there's two methods that can be used depending on what kind...