Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi, admittedly very new Renpy user here. So far this has been a very helpful template getting something going but I'm running into an issue in defining the narrator character to add a CTC icon. Namely, that defining the narrator at all, even with a name of None (no quotes) and nothing else, seems to cause the text to render with say_dialogue instead of say_thought; this causes the text to be spaced as say_dialogue even with no name displayed where it normally would. Would appreciate any guidance towards a way to solve this, if possible!

(+1)

Heya! The default narrator is declared via a line like define narrator = Character(None, what_style='say_thought') in the engine - aka, it explicitly sets the what_style to say_thought. You will need to do the same if you redefine it.