Skip to main content

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

1. You can change the value of an EncEntry's `text` attribute, for example:

original_text = "This is the original text."
your_entry = EncEntry(text=original_text)
your_entry.text = original_text + "This is new text." 

2. All visual aspects are handled by Ren'Py's Styles system. The styles used by the Encyclopaedia's UI are located at the bottom of `screens.rpy`. 

(5 edits)

Wonderful, thank you so much for the quick response!

I think I understand the answer to 1., although I am having some trouble with it, it currently makes all of the text in the entry align vertically and go down the page, and I have no idea how to fix it, I used the code almost exactly as you did in the example.