Skip to content

Instantly share code, notes, and snippets.

@Groogy
Last active September 24, 2017 20:27
Show Gist options
  • Save Groogy/4d847a7b834074963dd9da75fdb5879e to your computer and use it in GitHub Desktop.
Save Groogy/4d847a7b834074963dd9da75fdb5879e to your computer and use it in GitHub Desktop.
font = Boleite::Font.new app.graphics, "/usr/share/fonts/TTF/arial.ttf"
text = Boleite::Text.new font, "Hello world?\nHello new line!"
text.size = 150u32
text.default_color = Boleite::Color.blue
text.position = Boleite::Vector2f.new 10.0, 10.0
text.formatter.add /(Hello)/, Boleite::Color.green
text.formatter.add /(\!|\?)/, Boleite::Color.black
renderer.draw text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment