Skip to main content

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

Here's Mozilla's docs on text elements: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text

SVG text elements need the font:

font-family:Poppins

Try installing Poppins (it has an Open Font License). It looks like Godot has some font system itself, but I don't know much about game engines.


Alternatively, if you don't want to depend on Poppins, you could convert the text elements to a path (but that would be laborious.)

(2 edits)

library that godot uses for svg, doesn't support text and fonts

https://github.com/thorvg/thorvg#svg

for engine ready svg prompts, you could vectorize all font elements (convert into paths)

That's unfortunate. I'll look into vectorization and add it to the issue tracker on GitHub

Hi! It's been awhile, but I've finally vectorized the text elements. I haven't yet updated the package here on Itch, but you can download from the GitHub repo with this link: https://github.com/mr-breakfast/mrbreakfasts_free_prompts/archive/refs/heads/mai... The link downloads the the current state of the repository.