I have been working on dialogue for the game that I’m working on. I have taken a look at Defold Printer as well as RichText. The thing with Defold Printer is that I haven’t figured how to create multiple instances. Once I finish one conversation, I don’t know how to start up another one…
I also took a look a look at RichText and I have been having trouble making text even appear!
Does anyone have any insight into either of these subjects, or have a recommendation into which library I should use?
Yeah I took a look at the examples. I tried a simple line of text. I created a game object, and attached a gui to it. Attached to the gui was the gui script simply having:
local richtext = require "richtext.richtext"
function init(self)
richtext.create("Single line text with a dash of color By default left aligned.",
"system_font")
end
Still nothing happened, I’m sure I’m doing something wrong…