1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-10-14 18:40:43 +00:00

Add Lua functions (+ related text class changes):

- text_getHeight()
- getUserInputString()
This commit is contained in:
fgenesis 2013-12-12 23:14:17 +01:00
commit 201b3a76bc
5 changed files with 21 additions and 1 deletions

View file

@ -47,6 +47,11 @@ void DebugFont::setFontSize(int sz)
fontDrawSize = sz;
}
float DebugFont::getHeight()
{
return fontDrawSize * lines.size() * 1.5f; // vspc in render()
}
void DebugFont::formatText()
{
std::string text;