Search found 20 matches

by sonejo
Wed May 26, 2021 5:42 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] "on" statement doesn't work on choice screen?
Replies: 2
Views: 524

Re: "on" statement doesn't work on choice screen?

Hi Ocelot, that was it, thank you very much!!
Since the the say screen is often replaced by the choice screen , it really makes sense!

All the best

Sonejo
by sonejo
Wed May 26, 2021 3:49 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] "on" statement doesn't work on choice screen?
Replies: 2
Views: 524

[SOLVED] "on" statement doesn't work on choice screen?

Hi everybody! I've found a weird bug or I don't understand something: I would like to use the "on" statement on the choice screen to set a variable like this: on "show" action SetVariable("pnc_nodes_visible", False) on "hide" action SetVariable("pnc_nodes...
by sonejo
Wed Mar 03, 2021 3:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Preventing Self-Voicing from Activating
Replies: 14
Views: 5026

Re: Preventing Self-Voicing from Activating

This worked for me:

Code: Select all

define config.keymap['self_voicing'] = []
define config.keymap['clipboard_voicing'] = []
by sonejo
Wed Feb 24, 2021 5:20 am
Forum: Completed Games
Topic: SpaceNET - A Space Adventure: Release on STEAM this weekend!
Replies: 0
Views: 1136

SpaceNET - A Space Adventure: Release on STEAM this weekend!

Dear adventurers and sci-fi lovers! I'm really happy to announce: my new game SpaceNET is going to be released on STEAM on the 27th of February! :D If you are into retro sci-fi adventure game, it is time to put it on your wishlist! [youtube]https://youtu.be/XSDFSUtP3B8[/youtube] STEAM PAGE: https://...
by sonejo
Wed Feb 10, 2021 4:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Trojan found in 32bit-exe version of compiled game for markets!
Replies: 3
Views: 1225

Re: Trojan found in 32bit-exe version of compiled game for markets!

Thanks!
I will just remove the 32bit version for now.
by sonejo
Wed Feb 10, 2021 12:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Trojan found in 32bit-exe version of compiled game for markets!
Replies: 3
Views: 1225

Trojan found in 32bit-exe version of compiled game for markets!

Hi everyone, I'm releasing my game on Steam, so I compiled it "for market". Inside the zip file, there is also a 32bit-.exe version which I don't really need but I didn't removed it. Now Steam is telling me this .exe file was detected by VirusTotal: https://www.virustotal.com/gui/file/e3e5...
by sonejo
Wed Jan 27, 2021 1:32 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Custom mouse cursor in 7.4.x
Replies: 6
Views: 881

Re: Custom mouse cursor in 7.4.x

Yeah, that works!

thank you so much!!

All the best,

Vince
by sonejo
Sun Jan 24, 2021 1:45 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Custom mouse cursor in 7.4.x
Replies: 6
Views: 881

Re: Custom mouse cursor in 7.4.x

Thanks a lot for the hints! This works, of course: define config.mouse = {"default":[ ("gui/cursor.png", 1, 1) ] } But I would like to allow the user to change the cursor in the preferences. I need this, since on Android, they should use the system cursor, and on pc/mac, they can...
by sonejo
Fri Jan 22, 2021 5:12 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Custom mouse cursor in 7.4.x
Replies: 6
Views: 881

[SOLVED] Custom mouse cursor in 7.4.x

Hi! In my game I implemented a way to allow the user to switch between the system mouse cursor and a custom mouse cursor in the game's preferences. But since I switched to 7.4.x, this is not working anymore (as said in https://www.renpy.org/dev-doc/html/incompatible.html). I had a look to docs, but ...
by sonejo
Mon Jun 24, 2019 10:15 am
Forum: Ren'Py Questions and Announcements
Topic: How to increase Renpy's performance on Android?
Replies: 0
Views: 590

How to increase Renpy's performance on Android?

Hello everybody! I'm writing a game with a lot of transparencies and particles, it really looks amazing but on Android it is just too slow to be played, the device just gets very hot and the battery life becomes really short. I thought, how can I increase the performance by keeping the beauty of the...
by sonejo
Mon May 22, 2017 6:25 am
Forum: Ren'Py Questions and Announcements
Topic: Autoskip Say Screen / Timed Say Screen ?
Replies: 1
Views: 381

Autoskip Say Screen / Timed Say Screen ?

Hello Everybody! Is there a way to skip the say screen after N seconds? I'd like to have dialogs in animations where the user doesn't have to click each time to go to the next dialog, but that each dialog skips after N seconds automatically to the next. something like (where time says how long the d...
by sonejo
Mon Apr 17, 2017 8:03 am
Forum: Ren'Py Questions and Announcements
Topic: Rotate to coordinates [SOLVED]
Replies: 2
Views: 770

Re: Rotate to coordinates

Tank you so much, it works great!!
All the best
Vince
by sonejo
Fri Apr 14, 2017 6:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Rotate to coordinates [SOLVED]
Replies: 2
Views: 770

Rotate to coordinates [SOLVED]

Hello!

Is it possible somehow to rotate an displayable to a specific point? in my case to the mouse position?

thank you any advice!

all the best

vince
by sonejo
Tue Feb 21, 2017 6:18 am
Forum: Ren'Py Questions and Announcements
Topic: renpy.pause shows say screen [SOLVED]
Replies: 6
Views: 3045

Re: renpy.pause shows say screen

Problem solved, thank you!

What about to put this really useful information in the doc? :)

All the best
by sonejo
Mon Feb 20, 2017 5:36 pm
Forum: Ren'Py Questions and Announcements
Topic: renpy.pause shows say screen [SOLVED]
Replies: 6
Views: 3045

renpy.pause shows say screen [SOLVED]

Hello! I'm wondering, it is a normal behaviour, than renpy.pause shows the say screen (with no text) during the pause? :?: If yes, how can I disable it? I'd like to have a normal pause, just a pause of x seconds without showing anything. Or is that a bug? (As far as I can remember, it was not the ca...