Ren'py Custom Pronoun Tool

Sdílet
Vložit
  • čas přidán 7. 09. 2024

Komentáře • 28

  • @GodofGrunts
    @GodofGrunts Před 2 lety +46

    I ended up creating my own pronoun selection tool since other tools like this one limit you to the predefined options (meaning the player can't choose wacky pronouns if they want). Doing the {0}{1}{2} thing is pretty neat. Might implement that option in my code as well.
    I did this by creating an actor class like so:
    init python:
    mc_he = "he"
    mc_his = "his"
    mc_name = "John"
    class Actor:
    def __init__(self, character, name, sub_pro, obj_pro):
    self.c = character
    self.name = name
    self.he = sub_pro
    self.his = obj_pro
    Then I have a custom screen that lets the player choose he/him she/her or other. If they choose other, they're prompted for their subject pronoun and objective pronoun. Then I call
    python:
    mc = Actor(Character("mc_name", dynamic=True), mc_name, mc_he, mc_his)
    So when I write dialogue I use things like:
    mc.c "My name is [mc.name] and my pronouns are [mc.he]/[mc.his]."
    Feels more natural to write that way to me.

    • @vimi
      @vimi  Před 2 lety +8

      This tool does allow custom pronouns! Setup should just take a couple minutes for each new pronoun you add, and they're given equal weight as the other pronouns.
      Good on you for making your own pronoun tool, though! I always love hearing how people approach different problems!

    • @GodofGrunts
      @GodofGrunts Před 2 lety +9

      @@vimi It does allow for the programmer to create custom pronouns, but not the player.
      So instead of trying to create a pronoun for every edge case, I just let the player decide.

    • @vimi
      @vimi  Před 2 lety +6

      @@GodofGrunts AH, I gotcha! That's a neat solution!

  • @eirdonne_
    @eirdonne_ Před rokem +13

    THIS HURTS MY BRAIN AS AN ABSOLUTE NEWBIE someone help me, please

  • @lauraj349
    @lauraj349 Před 2 lety +14

    I just discovered this channel and am learning to make my own little visual novel dating game so I cant want to go thru all these videos and hopefully learn more !

    • @vimi
      @vimi  Před 2 lety

      Congrats! Best of luck to you!

  • @Katy133
    @Katy133 Před 2 lety +8

    Thank you for this tutorial. I've never used this tool before, so it was good to hear you showing us how to edit it.

  • @josephcyronder7021
    @josephcyronder7021 Před 2 lety +6

    This is such a helpful tool! Yay for more personalized options for the player!

  • @JackMack
    @JackMack Před rokem +2

    Great tool, love the options for adding [s] onto words when needed.

  • @GamersToTheNight
    @GamersToTheNight Před 2 lety +3

    I subscribed a few weeks ago but didn't regret it. You are making awesome and very helpful videos. :D

    • @vimi
      @vimi  Před 2 lety +1

      Thank you! That's great to hear! I'll try to keep up the winning streak!

  • @octopuddle6933
    @octopuddle6933 Před 9 dny

    Would it be possible for you to make a video centering on persistent values?

  • @nolanroube1009
    @nolanroube1009 Před 2 lety +4

    Thank you for your very cool videos ! I hope you will make many more.

    • @vimi
      @vimi  Před 2 lety +2

      That's the plan!

  • @Dizzydizzydizzy7
    @Dizzydizzydizzy7 Před 2 lety +3

    Looks like another useful tool!

    • @vimi
      @vimi  Před 2 lety +1

      I'm always on the lookout for more!

  • @honeybeesandbuttercups
    @honeybeesandbuttercups Před 2 lety +1

    excellent video, thank you!

    • @vimi
      @vimi  Před 2 lety +1

      You're welcome!

  • @ClassicCase
    @ClassicCase Před 2 lety +10

    Thanks. I used this to make my pronouns list of 2.

  • @JuleSan_jk
    @JuleSan_jk Před 2 lety +2

    Pretty QoL, huh ^^

    • @vimi
      @vimi  Před 2 lety +2

      Just SO many things to love about this tool :)

  • @blankcanvas8717
    @blankcanvas8717 Před 2 lety +9

    Can it handle the thousands of pronouns being invented every day?

    • @vimi
      @vimi  Před 2 lety +32

      Name all 1000 invented yesterday, and I'll tell you if it can handle it.

    • @sisterofdoom1
      @sisterofdoom1 Před rokem +2

      @@vimi 🥇

    • @marcelinewarceline
      @marcelinewarceline Před 5 měsíci

      @@vimi good response, thank you for the tutorial 💕