Search found 696 matches

by Andredron
Sun Mar 24, 2024 7:40 am
Forum: Ren'Py Cookbook
Topic: Shader
Replies: 5
Views: 13491

Re: Shader

https://github.com/CrossCouloir/renpy-blend-modes?tab=readme-ov-file Photoshop-style blend mode shaders for Ren'Py. This library adapts Jamie Owen's glsl-blend library to be used as Ren'Py shaders, allowing you to apply Photoshop-style image blending via a Ren'Py transform. Installation This project...
by Andredron
Sun Mar 24, 2024 5:33 am
Forum: Ren'Py Cookbook
Topic: Imitation Baldur's Gate dice animation effect
Replies: 0
Views: 91

Imitation Baldur's Gate dice animation effect

Post - https://www.renpy.cn/thread-1508-1-1.html https://i.postimg.cc/QCpvqpJ1/1.gif A while ago, I imitated Baldur's Gate in the group to implement a random dice rolling effect on a whim. The code was poorly written. Finally, with the help of ZYKsslm boss, I finally made the code run normally witho...
by Andredron
Tue Mar 12, 2024 7:03 am
Forum: Ren'Py Cookbook
Topic: Scrolling Wheel Displayable
Replies: 1
Views: 314

Re: Scrolling Wheel Displayable

Forum rules Do not post questions here! This forum is for example code you want to show other people. Ren'Py questions should be asked in the Ren'Py Questions and Announcements forum. Good afternoon, you have the wrong section to publish in. The cookbook publishes code, not a link to download code ...
by Andredron
Tue Feb 27, 2024 8:35 pm
Forum: Development of Ren'Py
Topic: Ren'Py Gripes
Replies: 556
Views: 511467

Re: Ren'Py Gripes

Can this example be added to this section in the document, because there is no information other than references.

viewtopic.php?f=51&t=49196

https://www.renpy.org/doc/html/iap.html
by Andredron
Tue Feb 27, 2024 8:03 pm
Forum: Ren'Py Cookbook
Topic: Gestures (Detailed analysis)
Replies: 0
Views: 459

Gestures (Detailed analysis)

If you've ever tried to build a gesture system into a game and looked online for information about it, you realize how terrible its documentation is https://www.renpy.org/doc/html/gesture.html It gives very little information and unlike other pages in the documentation - there is no example of use, ...
by Andredron
Tue Feb 27, 2024 9:49 am
Forum: Ren'Py Questions and Announcements
Topic: How to create a search box function with imagebuttons?
Replies: 11
Views: 1200

Re: How to create a search box function with imagebuttons?

You also can search "on the fly", filtering searched strings while user types, starting maybe from 3 symbols. There's "changed" property of "input" that allows doing so: https://www.renpy.org/dev-doc/html/screens.html#input Here is a test script (function "search_...
by Andredron
Tue Feb 27, 2024 7:53 am
Forum: Ren'Py Questions and Announcements
Topic: There's a problem with the star system map.
Replies: 6
Views: 441

Re: There's a problem with the star system map.

map_planet.rpy [/code] I don't know why this even works (does it?), but your screen contains faulty code: - "scene" is not a valid statement for a screen, it's used in labels to clear the master layer - "image" is not a valid statement for a screen, it's used for defining images...
by Andredron
Tue Feb 27, 2024 5:56 am
Forum: Ren'Py Questions and Announcements
Topic: There's a problem with the star system map.
Replies: 6
Views: 441

Re: There's a problem with the star system map.

map_planet.rpy init python: # Initialize variables star_systems = { 'tatooine': { 'name': 'Tatooine', 'x': 300, 'y': 400, 'description': 'A desert planet on the Outer Rim Territories.', 'image': 'images/tatooine.png', }, 'alderaan': { 'name': 'Alderaan', 'x': 700, 'y': 200, 'description': 'A peacefu...
by Andredron
Tue Feb 27, 2024 12:49 am
Forum: Ren'Py Questions and Announcements
Topic: There's a problem with the star system map.
Replies: 6
Views: 441

There's a problem with the star system map.

Hi everyone, I'm making a star system map of the star wars universe, while I was making the map I ran into some problems on them that I'm not quite getting around to solving. Please help me. My code: map_planet.rpy init python: # Initialize variables star_systems = { 'tatooine': { 'name': 'Tatooine'...
by Andredron
Thu Feb 22, 2024 11:22 am
Forum: Ren'Py Cookbook
Topic: little-used history chips
Replies: 4
Views: 1940

Re: little-used history chips

13)Implementation of a history scrollbar scrolling to the end to close This one has no effect in my new project,I don't kown why Try this, I tried to update the code from my phone, so it's not a sure working method. init python: import renpy.display.behavior.Adjustment class MyAdjustment(renpy.disp...
by Andredron
Sun Jan 28, 2024 3:45 am
Forum: Ren'Py Cookbook
Topic: d20-friendly Visual Novel prototype
Replies: 0
Views: 1000

d20-friendly Visual Novel prototype

https://github.com/sprintingkiwi/dungeon_academy A d20-friendly Visual Novel prototype realized with Ren'Py and AI-generated graphics. The code is under GNU GPL 3 License, except for dnd_character python library which credits go to tassaron https://github.com/tassaron/dnd-character dnd-character A P...
by Andredron
Sun Jan 28, 2024 3:16 am
Forum: Ren'Py Cookbook
Topic: Renpy backup saves
Replies: 0
Views: 831

Renpy backup saves

https://github.com/dtx3k/renpy-backup-saves Python script to backup all your ren'py saves to a single location This Script wil copy from every game folder the saves and copied them to a new folder in the root of the main directory. (you'll need all your games in the same folder though) If your games...
by Andredron
Sat Jan 27, 2024 12:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Twitch Integration into Ren'py
Replies: 0
Views: 755

Twitch Integration into Ren'py

https://www.reddit.com/r/RenPy/comments/1acagfq/twitch_integration_into_renpy/ Okay, hi. I have been on the prowl for an answer, for what seems like hours, for what may be a hopeless cause. I am currently developing a game that heavily relies on Twitch integration. The idea is that the streamer's ch...