Search found 7 matches

by Okapi
Thu May 06, 2021 1:04 pm
Forum: Ren'Py Questions and Announcements
Topic: How do you make the Gamepad move the mouse?
Replies: 0
Views: 1844

How do you make the Gamepad move the mouse?

Hello Everybody So I want the Gamepad to be able to move the mouse (either with the D-pad or the sticks, it doesn't matter). However, I didn't find a way to do this. I know MouseMove() (https://www.renpy.org/doc/html/screen_actions.html#MouseMove) exists, but I have no idea how I can implement it co...
by Okapi
Mon Apr 05, 2021 11:29 am
Forum: Ren'Py Questions and Announcements
Topic: what_suffix and Image text tag
Replies: 4
Views: 784

Re: what_suffix and Image text tag

... Well, you can make things even more complicated then...)) Check links in this thread - https://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=57832 It's about animating character's mouth, but you could try to use it to show your suffix image. Like while character 'speaking' the function shou...
by Okapi
Fri Apr 02, 2021 12:27 pm
Forum: Ren'Py Questions and Announcements
Topic: what_suffix and Image text tag
Replies: 4
Views: 784

Re: what_suffix and Image text tag

... Try to use CTC (click-to-continue indicator) instead of suffix image. https://www.renpy.org/doc/html/dialogue.html https://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=60418&p=535396&hilit=ctc#p535396 Thank you for your answer. Unfortunately I'm also using some code that shows a sc...
by Okapi
Thu Apr 01, 2021 5:35 pm
Forum: Ren'Py Questions and Announcements
Topic: what_suffix and Image text tag
Replies: 4
Views: 784

what_suffix and Image text tag

Hello Everyboy I'm using the following code in my project, as a way to have an animated image (20 Frames)at the end of each characters dialogue. define abc = Character(what_suffix=" {image=animated_image}") The Problem is, I'm using slow text speed and the animation is apparently already l...
by Okapi
Sat Mar 20, 2021 8:17 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Weird Micro Stuttering Issue
Replies: 3
Views: 503

Re: Weird Micro Stuttering Issue

You're calling the screen then jumping back to the label, from which you call the screen again, and this is causing the call stack depth to grow. You should probably consider adding a return somewhere, to break out of the cycle. You're a saint :D. This was indeed the solution I replaced the "J...
by Okapi
Fri Mar 19, 2021 8:26 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Weird Micro Stuttering Issue
Replies: 3
Views: 503

[Solved]Weird Micro Stuttering Issue

Hey Everybody I've encountered this weird Micro Stuttering issue in my project, which I can't seem to fix. I'm using this code in my project, which makes it so I can click on invisible Buttons in the background, which takes me to a label: screen room2(): add "background" #This is a 20 fram...
by Okapi
Wed Feb 17, 2021 11:15 am
Forum: Ren'Py Questions and Announcements
Topic: Text scrolling/ dialogue sounds, per word
Replies: 31
Views: 7816

Re: Text scrolling/ dialogue sounds, per word

Sorry for necro, but I've found this code and sadly, on 7.3.5, it doesn't seem to work well. You did nothing wrong, but since 2016 stuff changed a lot - now text is tied to voicing and auto-voicing tags and not speaking you can now create your own tags... This code will never work anymore. The code...