Search found 975 matches

by m_from_space
Thu Mar 07, 2024 12:51 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Something's odd with hover_alpha and tooltips
Replies: 5
Views: 223

Re: Something's odd with hover_alpha and tooltips

What am I missing? Thank you! I must say that I've never seen a statement like "hover_alpha" before, and therefore I am surprised it even works. But the usual way would be something like this: image mybutton_idle: "pic" alpha 0.5 image mybutton_hover: "pic" image mybut...
by m_from_space
Thu Mar 07, 2024 6:18 am
Forum: Ren'Py Questions and Announcements
Topic: Reloading the game resets my python Classes
Replies: 9
Views: 296

Re: Reloading the game resets my python Classes

Well, it is wrong, because "init -1" is executed before "init 0", and "default" there is executed after "init 0". This construction tells us that it would be executed at "init -1", which is wrong. It's a syntax that's trying to mislead those who rea...
by m_from_space
Wed Mar 06, 2024 3:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Reloading the game resets my python Classes
Replies: 9
Views: 296

Re: Reloading the game resets my python Classes

Lesson learned: Don't save classes in lists. Sorry to say it like this, but that's complete nonsense. @jeffster already explained a lot what is going wrong with your code, so I hope you read about it. init -1 python: characters = [] Here you're creating a variable, that Renpy will treat as a consta...
by m_from_space
Wed Mar 06, 2024 6:11 am
Forum: Ren'Py Questions and Announcements
Topic: Can we play sound loop when textbox is showing text?
Replies: 8
Views: 294

Re: Can we play sound loop when textbox is showing text?

People are different, it's just my view on the topic and why I think that probably the majority wouldn't enjoy much text-delay effects. It's like with fancy fonts: often the more exotic and impressive it is, the harder it is to read in actual text (longer than just trademark or something)... Whatev...
by m_from_space
Tue Mar 05, 2024 1:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Can we play sound loop when textbox is showing text?
Replies: 8
Views: 294

Re: Can we play sound loop when textbox is showing text?

Reading process is actually not just getting first letter, then the second letter... It's more complex than that and involves recognition of whole words. As an expeirment, it was proven that people often don't notice if two or more symbols swapped positions in a word. Yeah, in fact you can actually...
by m_from_space
Tue Mar 05, 2024 1:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Drag item won't consistently drop in its assigned spot
Replies: 5
Views: 309

Re: Drag item won't consistently drop in its assigned spot

I also tried the notify check line but for some reason it's not even running on that piece. So it looks like the piece_drop function isn't running on that piece, but I'm not sure why it's not. Yeah that was my assumption. So try making the drop pieces visible so you can be sure they are in the righ...
by m_from_space
Tue Mar 05, 2024 4:54 am
Forum: Ren'Py Questions and Announcements
Topic: How do I change the text size and position with each scene?
Replies: 4
Views: 192

Re: How do I change the text size and position with each scene?

EDIT: An idea came to me. Could I define several characters as "none", determine a different x,y locations for them and use them according to each scene? So "i sure love not getting hit by an anvil" is a line from character k and "my boy" is from character c, each with...
by m_from_space
Tue Mar 05, 2024 4:45 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Character's distinct reaction when player choose one option n amount of times
Replies: 3
Views: 213

Re: Character's distinct reaction when player choose one option n amount of times

I wanted to find a way to implement it myself, but I'm not good at wording unfortunately. So what's your problem? How to count in Renpy? default count_annoy = 0 label start: "Begin..." menu annoy: "Ask the same question again": if count_annoy == 2: jump stopit $ count_annoy += 1...
by m_from_space
Mon Mar 04, 2024 4:07 pm
Forum: Ren'Py Questions and Announcements
Topic: (How) Is it possible to display multipler_say_window with SideImage?
Replies: 17
Views: 841

Re: (How) Is it possible to display multipler_say_window with SideImage?

I thought because the manual -> https://www.renpy.org/dev-doc/html/multiple.html#styles always talks about "blockX_multipleX _say _window", I thought "_say" should always come before the "window" or "namebox" because of the style prefix. Learned something aga...
by m_from_space
Mon Mar 04, 2024 4:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Can we play sound loop when textbox is showing text?
Replies: 8
Views: 294

Re: Can we play sound loop when textbox is showing text?

If you conduct a poll, I bet that vast majority would prefer the ability to see the text instantly, rather than waiting for it to come. To me that would be hindering and distracting from my smooth perception process. There is difference between "waiting for a text to come" (meaning the cp...
by m_from_space
Mon Mar 04, 2024 5:38 am
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Hide Window/Show Window will not work
Replies: 3
Views: 196

Re: (Problem) Hide Window/Show Window will not work

I don't know what I am doing wrong, I want to keep my textbox hidden, while keeping the text visible. But the Hide Window wont work. How the code looks: https://sta.sh/0jxuuknh0xf Can anyone help? The command "window hide" will hide the dialogue window (in other words the "say" ...
by m_from_space
Mon Mar 04, 2024 5:31 am
Forum: Ren'Py Questions and Announcements
Topic: Main Menu doesn't work after updating from 8.1.1.23060707 to 8.2.0
Replies: 1
Views: 108

Re: Main Menu doesn't work after updating from 8.1.1.23060707 to 8.2.0

PainNow wrote: Sun Mar 03, 2024 10:13 am What am I missing?
Did you update using the launcher? If so, you may wanna try downloading Renpy again and make a clean install.

Are there any error messages appearing anywhere? What else doesn't work? What OS are you using?
by m_from_space
Sun Mar 03, 2024 6:18 am
Forum: Ren'Py Questions and Announcements
Topic: Need to delete both persistent files (app data and dev saves folder) to reset player Preferences
Replies: 1
Views: 341

Re: Need to delete both persistent files (app data and dev saves folder) to reset player Preferences

Is it intended, and should I open an issue on GitHub? I can't answer your question directly, but since Renpy 8.2, there is this new function to delete all persistent data: https://www.renpy.org/doc/html/persistent.html#persistent._clear $ persistent._clear() # or to clear more $ persistent._clear(p...
by m_from_space
Sun Mar 03, 2024 6:14 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with Android on Renpy 8.0.3
Replies: 1
Views: 389

Re: Problem with Android on Renpy 8.0.3

Mirrodin wrote: Thu Feb 22, 2024 6:02 am I tried to up the renpy version, the new version renpy work fine but my game not, so, I have to find a clue for building android with the 8.0.3
What go wrong ?
I think for Renpy versions prior to 8.2 you need JDK version 8 64-bit.
by m_from_space
Sun Mar 03, 2024 6:06 am
Forum: Ren'Py Questions and Announcements
Topic: Keyboard doesn't select buttons in vpgrid if draggable True
Replies: 2
Views: 349

Re: Keyboard doesn't select buttons in vpgrid if draggable True

jeffster wrote: Wed Feb 21, 2024 12:42 pm I'm not sure if it's intended, but just in case, here's my report:
Please report possible issues here, since the forum is not a bugtracker: https://github.com/renpy/renpy/issues