Search found 7 matches

by Frynler
Wed Dec 21, 2016 5:04 pm
Forum: Ren'Py Questions and Announcements
Topic: im.MatrixColor changing hue value on a DynamicImage?
Replies: 5
Views: 2769

Re: im.MatrixColor changing hue value on a DynamicImage?

im manipulators only takes image files or images manipulated by other im manipulators. You have to use DynamicDisplayable to include im manipulators instead of DynamicImage. It's a bit difficult to understand, so I'll paste portion of my game code as example. Doll is an object that stores variables...
by Frynler
Tue Dec 20, 2016 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: im.MatrixColor changing hue value on a DynamicImage?
Replies: 5
Views: 2769

im.MatrixColor changing hue value on a DynamicImage?

I feel kinda bad for asking so much on this forum lol But i lose nothing for asking, so here it goes! If you have read my previows posts, i doing some kind of customizable clothing system. So far thanks to the help from the people on this forum I managed to make almost everything, the only thing tha...
by Frynler
Tue Dec 20, 2016 4:14 pm
Forum: Ren'Py Questions and Announcements
Topic: String variable within a string variable?
Replies: 3
Views: 1684

Re:String variable within a string variable?

I'd use: $ clothing_torso = "images/scene1/" + Torso + ".png" Daaaaaaaaaamn... i knew it would be simple, but didnt think it would be THAT simple I did that but adding quotes like this: $ clothing_torso = "images/scene1/" + "$Torso" + ".png" and stu...
by Frynler
Tue Dec 20, 2016 12:26 pm
Forum: Ren'Py Questions and Announcements
Topic: String variable within a string variable?
Replies: 3
Views: 1684

String variable within a string variable?

Hi there again, I knew that soon enough I would be coming back here, oh well. My current problem is, I can't seem to get a string variable within a string variable for some reason. Here is what I want to do: #I set a variable that works as the player's current equiped clothing $ Torso = "TShirt...
by Frynler
Mon Dec 19, 2016 1:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Show different sprites depending on a variable?
Replies: 6
Views: 2020

Re: Show different sprites depending on a variable?

However, i would like that the buttons did more than just jumping to another label when pressed, like changing a variable of money for instance., how can I do multiple actions with that button click? hotspot (803, 63, 167, 163) clicked Jump ("test"), $money += 10 It's clicked [SetVariable...
by Frynler
Mon Dec 19, 2016 9:50 am
Forum: Ren'Py Questions and Announcements
Topic: Show different sprites depending on a variable?
Replies: 6
Views: 2020

Re: Show different sprites depending on a variable?

There are two ways: Combination of DynamicImage and Fixed, or DynamicDisplayable. Fixed is a way to layout layers. For example: image figure = Fixed("firstlayer.png", "secondlayer.png", fit_first=True) DynamicImage is explained like: Strings may have one or more square-bracket s...
by Frynler
Mon Dec 19, 2016 9:04 am
Forum: Ren'Py Questions and Announcements
Topic: Show different sprites depending on a variable?
Replies: 6
Views: 2020

Show different sprites depending on a variable?

Hi there, You can call me Frynler here, I'm new on this software and also this programming language, as I'm currently learning C#, but since Renpy uses python I'm kind of lost. Note that this is my first ever attempt at programming something serious so forgive me if i make dumb mistakes. Now to the ...