Search found 23 matches

by Gouvernathor
Tue May 16, 2023 4:44 pm
Forum: Ren'Py Cookbook
Topic: Accessibility brightness and contrast options
Replies: 6
Views: 1965

Re: Accessibility brightness and contrast options

You're not using the last version of Ren'Py.
by Gouvernathor
Fri Feb 24, 2023 9:10 am
Forum: Ren'Py Cookbook
Topic: Accessibility brightness and contrast options
Replies: 6
Views: 1965

Accessibility brightness and contrast options

This is some code allowing the players to customize the brightness and contrast of the game. Be warned that it forbids you the use of the camera and show-layer-at statements, and that passing excessive values will make the screen entirely black, white or gray and in that case you won't be able to ch...
by Gouvernathor
Thu Dec 15, 2022 12:16 pm
Forum: Development of Ren'Py
Topic: Ren'Py Gripes
Replies: 556
Views: 564013

Re: Ren'Py Gripes

+1 for bold-looking punctuation rather than characters which could get visually confused with others.
by Gouvernathor
Thu Dec 01, 2022 1:17 pm
Forum: Ren'Py Cookbook
Topic: Translation tools
Replies: 3
Views: 1252

Re: Translation tools

Answered on github, the console which needs to be used is the game's one, and not the OS one.
by Gouvernathor
Sat Aug 27, 2022 11:57 am
Forum: Ren'Py Cookbook
Topic: Translation tools
Replies: 3
Views: 1252

Translation tools

This is a set of tools to improve and manage renpy translation files. The first tool reorders the translations in a file, to put the obsolete ones at the bottom so they can be checked and eventually removed, which helps when you give them to a translator. The second adds more commented-out translati...
by Gouvernathor
Sat Aug 27, 2022 11:53 am
Forum: Ren'Py Cookbook
Topic: ChromaGlitch : show images with a DDLC-like glitch effect
Replies: 5
Views: 2800

Re: ChromaGlitch : show images with a DDLC-like glitch effect

Yes, it's possible. You can use ATL for that, for example: image eileen glitched: glitch("eileen happy", randomkey=23464843) pause 0.2 glitch("eileen happy", randomkey=3747685) pause 0.1 glitch("eileen happy", randomkey=85386865) pause 0.3 repeat Use the randomkey param...
by Gouvernathor
Sat Jul 02, 2022 6:27 am
Forum: Ren'Py Cookbook
Topic: Layeredimages dynamic control using adjust_attributes
Replies: 5
Views: 3917

Re: Layeredimages dynamic control using adjust_attributes

Great solutions ! I wouldn't have advised anything better, I think. For the side_adjust_attributes, if you want this behavior to apply to all of the side images, maybe you could try a more automated/generalized version ? def side_image_attributes(name): if len(name)>1 and name[1] in config.adjust_at...
by Gouvernathor
Thu Jun 30, 2022 11:15 pm
Forum: Ren'Py Cookbook
Topic: Font aliases
Replies: 0
Views: 1503

Font aliases

Just a one-line code snippet. One thing a bit annoying in ren'py is that when you want just some words in a sentence to display in a different font, you have to use the {font} tag, and that text tag forces you to type in the whole path to the font file. Or does it ? There's a feature in Ren'Py that'...
by Gouvernathor
Thu Jun 30, 2022 10:53 pm
Forum: Ren'Py Cookbook
Topic: Layeredimages dynamic control using adjust_attributes
Replies: 5
Views: 3917

Re: Layeredimages dynamic control using adjust_attributes

Thank you ! Feedback like this is really appreciated. Let me know if you use it in a released game !
by Gouvernathor
Thu Jun 16, 2022 10:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Different 'on hide' transform depending on button clicked
Replies: 7
Views: 420

Re: Different 'on hide' transform depending on button clicked

This doesn't replace any and all ATL transform with an "on hide" clause (although you can easily convert your ATL transforms to ATL transitions), but you can use [With(moveoutright), Return()]. moveoutright isn't exactly the same as the transform you're using, but as I said you can convert...
by Gouvernathor
Thu Jun 16, 2022 6:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Different 'on hide' transform depending on button clicked
Replies: 7
Views: 420

Re: Different 'on hide' transform depending on button clicked

Have you tried using [SetScreenVariable(...), Return()] as an action (list) ?
by Gouvernathor
Mon Jan 31, 2022 3:06 pm
Forum: Ren'Py Cookbook
Topic: ChromaGlitch : show images with a DDLC-like glitch effect
Replies: 5
Views: 2800

Re: ChromaGlitch : show images with a DDLC-like glitch effect

Saw the issue first, lol !
For those wondering, it has partially been solved, partially been issued a workaround in the readme.
by Gouvernathor
Mon Jan 17, 2022 6:20 pm
Forum: Ren'Py Questions and Announcements
Topic: layeredimage expected statement
Replies: 2
Views: 392

Re: layeredimage expected statement

My guess is that there's probably something just before the layeredimage declaration that's messing with it. Try putting it at the beginning of the file where it caused a problem ?