Search found 48 matches
- Wed Mar 11, 2020 1:50 am
- Forum: Ren'Py Questions and Announcements
- Topic: History log whit images?
- Replies: 3
- Views: 254
History log whit images?
Hi everyone. Please help me solve this problem, I am trying to make a function that resives h.image_tag from the history screen. to have a picture of the character in the history log. my intention is that this function returns the name of the side images that were shown at the time. so the character...
- Tue Mar 10, 2020 3:17 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to set up Ren'Py on the Linux Endless 64_86?
- Replies: 12
- Views: 616
Re: How to set up Ren'Py on the Linux Endless 64_86?
You have to run renpy.sh on the linux terminal, .exe's files are for Windows
In the terminal change the directory to your sdk and type
In the terminal change the directory to your sdk and type
Code: Select all
./renpy.sh
- Tue Mar 10, 2020 11:55 am
- Forum: Ren'Py Questions and Announcements
- Topic: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
- Replies: 4
- Views: 454
Re: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
I have the transition you need but it only works with images, I can't make it work with the screen. align (0.5, 1.0) pos (0.5, 1.0) size (0, 0) linear 1.0 maxsize (x, y) # replace x and y with your image size I have another version but I like it less. align (0.5, 1.0) pos (0.5, 1.0) yzoom 0.0 linear...
- Mon Mar 09, 2020 2:13 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
- Replies: 4
- Views: 454
Re: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
1. Perhaps the solution is to mix the transitions with config.window_hide_transition of a transformation with "on show" and "on hide" and put a sentence "at" on the screen. Another solution would be to make another screen say and make changes to the characters objects such as: define e = Character("...
- Fri Mar 06, 2020 5:11 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED]Say statement in Menu
- Replies: 5
- Views: 384
Re: Say statement in Menu
I am not sure what you want to do, but you can modify the Ren'py source code, the license it has allows you to make modifications. This is clear if you have the knowledge to do it. Don't forget to make a backup. Inside the renpy SDK folder look for the renpy folder, one of the files contains the sta...
- Fri Mar 06, 2020 4:55 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] reset preferences button
- Replies: 3
- Views: 269
Re: reset preferences button
Thanks
- Fri Mar 06, 2020 11:48 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] reset preferences button
- Replies: 3
- Views: 269
[SOLVED] reset preferences button
Hi. How can I make a button to reset the default preferences? Thanks for the help.
- Fri Mar 06, 2020 11:31 am
- Forum: Ren'Py Questions and Announcements
- Topic: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
- Replies: 4
- Views: 454
Re: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
Hi. Put this on top of options.rpy. Modify the times to get the desired result. It is not necessary to edit screens.rpy. transform offscreenbottom: ypos 1.0 yanchor 0.0 define my_dissolve = Dissolve(0.5) define window_in = MoveTransition(0.5, enter=offscreenbottom, leave=None, layers=['screens']) de...
- Tue Mar 03, 2020 11:40 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] problem with animations while displaying dialog
- Replies: 4
- Views: 411
Re: problem with animations while displaying dialog
Thanks to everyone
- Thu Feb 27, 2020 11:39 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] String variables return [n'string] when using list
- Replies: 2
- Views: 227
Re: String variables return [n'string] when using list
Try:
check the links:
https://www.renpy.org/doc/html/text.htm ... ating-data
https://www.python.org/dev/peps/pep-3101/
Code: Select all
e "Things on the list: [items!s]"
https://www.renpy.org/doc/html/text.htm ... ating-data
https://www.python.org/dev/peps/pep-3101/
- Wed Feb 26, 2020 1:58 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] problem with animations while displaying dialog
- Replies: 4
- Views: 411
[SOLVED] problem with animations while displaying dialog
To make this animation I wrote the following script. default preferences.text_cps = 15 define s = Character('Sylvie', what_suffix='"',what_prefix='"') label start: show Sylvie normal s "Text Text text {nw}" show Sylvie happy extend "Text text text." The animation works well. Makes the image change w...
- Wed Feb 26, 2020 1:27 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] differences between various types of characters
- Replies: 2
- Views: 452
- Tue Feb 25, 2020 1:41 pm
- Forum: Ren'Py Cookbook
- Topic: Speaking animation while playing an audio using layeredimages
- Replies: 6
- Views: 2318
- Wed Feb 12, 2020 2:25 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] differences between various types of characters
- Replies: 2
- Views: 452
[solved] differences between various types of characters
Hi. My question is what is the difference between using: - ADVCharacter("Eileen"), ADVSpeaker("Eileen") and Character("Eileen", kind=adv) - DynamicCharacter("player_name"), Character("player_name", dynamic=True), Character("[player_name]", dynamic=True), Character("[player_name]"), - NVLCharacter("E...
- Fri Jan 24, 2020 7:25 pm
- Forum: Ren'Py Cookbook
- Topic: FSM and Ren'Py(label)
- Replies: 2
- Views: 952
Re: FSM and Ren'Py(label)
Nice, this is very useful. I had the idea that complex stories should be handled by a state machine, but there was no time to program a script to do it. Muy bien amigo.