Search found 1950 matches

by Donmai
Tue Dec 29, 2020 11:34 am
Forum: General Discussion
Topic: Non-anime VNs
Replies: 3
Views: 5567

Re: Non-anime VNs

Cinders, anytime. Look for it on Steam.
by Donmai
Sun Dec 27, 2020 12:09 pm
Forum: Other Story-based Games
Topic: Night in the Woods
Replies: 2
Views: 14319

Re: Night in the Woods

Just to let you know this game is free (for a limited time) on the Epic Games Store today. If you have a spare 1.54 GB of space free on your hard drive, don't miss it.
by Donmai
Tue Nov 24, 2020 4:45 pm
Forum: General Discussion
Topic: Want to change username?
Replies: 1
Views: 5708

Re: Want to change username?

Hi, just send a message to a forum administrator.
memberlist.php?mode=team
by Donmai
Fri Nov 13, 2020 2:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Animated dust particles in Ren'Py? (SOLVED)
Replies: 6
Views: 840

Re: Animated dust particles in Ren'Py?

you can try this recipe from the Ren'Py cookbook section:
viewtopic.php?f=51&t=24762
by Donmai
Sat Nov 07, 2020 2:41 pm
Forum: Creator Discussion
Topic: Do you think there is a market for non-anime visual novels?
Replies: 20
Views: 6696

Re: Do you think there is a market for non-anime visual novels?

No. Be rest assured, I don't intend to change my vision for the sake of "fitting" into the genre. My concern is that the term "visual novel" sets up certain expectations for people. Maybe it's better not to use it in advertising. My short answer, and your comment, walk together ...
by Donmai
Fri Sep 25, 2020 5:52 pm
Forum: Welcome!
Topic: Guestbook
Replies: 5534
Views: 2779849

Re: Guestbook

Welcome to the club. :-)
by Donmai
Wed Sep 23, 2020 12:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Particle system
Replies: 2
Views: 544

Re: Particle system

xela also made some experiments using ATL and user-defined displayables:
viewtopic.php?f=8&t=36127
viewtopic.php?f=8&t=36451
by Donmai
Tue Sep 08, 2020 9:12 pm
Forum: Ren'Py Cookbook
Topic: Automatic text translator for games on the RenPy.
Replies: 2
Views: 2502

Re: Automatic text translator for games on the RenPy.

Very useful, thanks for posting. Successfully used it to read this game.
by Donmai
Sat Aug 22, 2020 12:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Images not dissolving or fading
Replies: 2
Views: 446

Re: Images not dissolving or fading

Go to your game preferences screen. Check that transitions aren't marked on the Skip section.
by Donmai
Fri Aug 14, 2020 8:19 pm
Forum: General Discussion
Topic: Does using Ren'Py mean I have experience with Python?
Replies: 12
Views: 9444

Re: Does using Ren'Py mean I have experience with Python?

Hmm. NadOtavlas? Curious name, especially when we read it backward.
by Donmai
Fri Aug 07, 2020 7:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Reticent animation in text?
Replies: 7
Views: 664

Re: Reticent animation in text?

Well, I wouldn't say it's the best way, but the easiest way I know is to make use of the "wait" text tag:

Code: Select all

    n "How to use an Ellipsis.{w=1.0}.{w=1.0}.{w=1.0}{nw} \nCorrectly?"
This will give you a veeeeery long pause of 1 second. Adjust it to your taste.
by Donmai
Fri Jul 31, 2020 5:37 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Background keeps disappearing
Replies: 3
Views: 436

Re: [SOLVED] Background keeps disappearing

I'd suggest you to change the naming of your background (try, for example: klaus_bedroom). Both your background image and your sprite have the same name tag 'klaus'. That's why your sprite is overwriting the background image when it is shown.
https://www.renpy.org/doc/html/displayi ... html#image
by Donmai
Thu Jul 30, 2020 8:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Issues moving sprites around with ATL
Replies: 1
Views: 371

Re: Issues moving sprites around with ATL

Movement should be smoother if you use

Code: Select all

subpixel True
at the start of your transform.
https://www.renpy.org/doc/html/atl.html ... y-subpixel

I never tried layered images with ATL animation, so I can't offer any help regarding the expression changing problem.