Give townies names - #2922
Give townies names #2922edwardvilcamonje-max wants to merge 13 commits into
Conversation
…_quest_starter.dialogue
…_quest_starter.dialogue.import
manuq
left a comment
There was a problem hiding this comment.
There are too many unrelated changes but I see where this is going by reading random_name.gd. Still, I don't see how can the name be used in a dialogue if it's not part of the CharacterRandomizer class. Please add it there like this:
## The random seed of this character. Setting another character to the same seed
## will make them identical. Setting it to zero will reset the skin color.
@export var character_seed: int
## The character name. Like sprites and palette, this is picked randomly using the
## [member character_seed].
@export var character_name: String
And also as the documentation comment says, please make it work with the character seed. The same seed number should give the same name when you click "Update":
There was a problem hiding this comment.
This one too. The file was removed and has no relationship with the task.
There was a problem hiding this comment.
Lo siento, eso fue un error. Eso pertenece a otro tema en el que trabajé, y se envió por accidente.
manuq
left a comment
There was a problem hiding this comment.
@edwardvilcamonje-max sorry but this has unintended changes again. Also please don't remove the documentation comments from townie.tscn. Thanks!


Add a random name generator for Townies using a shared list of textile-inspired names. Names are not separated by gender, allowing any name to be assigned to any Townie appearance. The generated name remains the same for the Townie instance.
Resolves #2444