Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Rawb Herb

2
Posts
7
Followers
3
Following
A member registered Jun 16, 2020 · View creator page →

Creator of

Recent community posts

Re: Proper nouns, I made a simple Pronunciation Guide in my TTSHandler script. It’s a method that returns a new string and is called by my TTSHandler. Any string of text being sent to the TTS first goes through a pronunciation filter pass, where I replace any instance of proper nouns with a new string pronouncing them correctly. Example:

newText = text.Replace(“Finnelope”, “Fin-ELL-oh-pee”);

This is also useful when I want it to read things a specific way, for instance my maps use “1F”, “2F”, “BF”, but I want the TTS to read them as “First Floor”, “Second Floor”, and “Basement Floor”. Hope that’s helpful!

Excellent 😎