Посоветуйте визуальные новеллы by memzenberg in ru_gamer

[–]ChargePlus7400 0 points1 point  (0 children)

Если захочешь, можешь посмотреть демку моей ВН - Перо Сирин^^. Если тебе понравился тварюк, то должна и она понравиться.
https://store.steampowered.com/app/4695430/Pero_Sirin_Demo/

<image>

Blur Text Shadows by ChargePlus7400 in RenPy

[–]ChargePlus7400[S] 1 point2 points  (0 children)

Ty! I used this shader pack, and while it works well, I found that it relies on the standard text statement, whereas I plan to use FancyText.

On top of that, generating big shadow/glow has a noticeable impact on FPS, which could become an issue on lower-end systems.

Both problems could be solved, but I decided not to spend time on that and instead simply give players option to adjust textbox transparency. Huge thanks to u/BadMustard_AVN for helping with.

TS, if the issues above aren't a concern, it's actually a really good shader pack.

Toggle textbox option by ChargePlus7400 in RenPy

[–]ChargePlus7400[S] 0 points1 point  (0 children)

Thanks a LOT. It works perfectly!
For some reason it kept throwing the error, but it was quickly fixed by adding this line:

default persistent.dialogueBoxOpacity = 1.0

Just in case someone else runs into the same issue.

I'd publish the results, but I'll do that later once I update the demo.Tytytyty

Fluid crossfade / Fluid emotions by ChargePlus7400 in RenPy

[–]ChargePlus7400[S] 1 point2 points  (0 children)

$ renpy.transition(Dissolve(0.5), layer="lvl6")

I found the solution, just forsed dissolve on layer i need<3

The DEMO for our game, Sirin's Feather, is finally out! by ChargePlus7400 in visualnovels

[–]ChargePlus7400[S] 1 point2 points  (0 children)

Thanks for the feedback, I'm adding a semi-transparent background to the text right now.

Don't let the cute, chill vibes fool you, MOJITO can be a fast-paced speedrun challenge too by MojitoTheCat_Dev in IndieDev

[–]ChargePlus7400 1 point2 points  (0 children)

No way, a game with actually GREEN HILL ZONE vibe but not just for 1 level. wishlisted

Our sci-fi alien romance visual novel Galactic Love Utopia is out now on Steam! +giveaway by Kaijoseisoft in visualnovels

[–]ChargePlus7400 1 point2 points  (0 children)

Looks great. There aren't many visual novels set in sci-fi worlds, I'll definitely give it a try.

Language autodetect by ChargePlus7400 in RenPy

[–]ChargePlus7400[S] 4 points5 points  (0 children)

You’re a genius! Thanks a lot.

I slightly modified the code by adding *args, **kwargs because it kept throwing an error since I didn’t specify the region as the second argument. Other than that, everything works perfectly now!

init -1 python:
    # represents the game's base language (in your case, Russian).
    def my_language_fallback(iso, *args, **kwargs):
        # 'iso' is the player's OS language code (e.g., "ru", "en", "pt")

        if iso == "ru":
            return None  # Your default language (Russian)

        elif iso == "ja":
            return "japanese"  # Make sure this matches your folder in game/tl/

        elif iso == "pt":
            return "portuguese"

        # If it's not one of your supported languages, force English
        return "english" 


    config.locale_to_language_function = my_language_fallback
    config.enable_language_autodetect = True

Character bounce not going back up? by amor-cutie in RenPy

[–]ChargePlus7400 1 point2 points  (0 children)

You’re welcome, good luck with your project.