Search found 6 matches

by togs
Tue Nov 30, 2021 5:10 am
Forum: Ren'Py Questions and Announcements
Topic: Text rendering with {fast} tag
Replies: 2
Views: 344

Re: Text rendering with {fast} tag

Wow, I really overthought that one!

Thank you!
by togs
Tue Nov 30, 2021 3:04 am
Forum: Ren'Py Questions and Announcements
Topic: Text rendering with {fast} tag
Replies: 2
Views: 344

Text rendering with {fast} tag

My apologies, I KNOW I've seen a reference to this somewhere, but can't find it! I have a scene where a character calls out to another, repeating his name, with a pause in between iterations, like this: "Steve... Steve! I mean it, Steve, I'll quit... Steve !" The code, such as it is, looks...
by togs
Tue Oct 26, 2021 4:31 pm
Forum: Ren'Py Questions and Announcements
Topic: movie not playing??
Replies: 3
Views: 565

Re: movie not playing??

I have a similar issue except I've NEVER got the movie_cutscene method to work. $ renpy.movie_cutscene("Video/Shower.webm") "Test" image fs_video = Movie( play = "Video/Shower.webm", channel = "movie" ) show fs_video First method, nothing happens. But the seco...
by togs
Sat Aug 21, 2021 1:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Referencing a class member via a variable
Replies: 3
Views: 748

Re: Referencing a class member via a variable

Thank you all - I appreciate all the suggestions - going to go away and experiment!
by togs
Thu Aug 19, 2021 4:13 am
Forum: Ren'Py Cookbook
Topic: Dynamic Label Function!
Replies: 3
Views: 3640

Re: Dynamic Label Function!

I'm new to this, but I would have gone for a more descriptive name like "chapter"

Then, just to make it more readable:

lbl = "Ch" + str(chapter)
by togs
Thu Aug 19, 2021 3:59 am
Forum: Ren'Py Questions and Announcements
Topic: Referencing a class member via a variable
Replies: 3
Views: 748

Referencing a class member via a variable

Suppose I have a class named fruittypes, with members including apple, banana and cherry. There are attributes for name, shape, size and color. I also have a function like this: label fruitdata( fchoice): "Your chosen fruit, the [fchoice.name], is typically [fchoice.size], [fchoice.shape] and a...