mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-10-17 03:49:28 +00:00
Add Lua functions (+ related text class changes):
- text_getHeight() - getUserInputString()
This commit is contained in:
parent
5336c8d350
commit
201b3a76bc
5 changed files with 21 additions and 1 deletions
|
@ -8507,6 +8507,11 @@ luaFunc(castLine)
|
|||
return 3;
|
||||
}
|
||||
|
||||
luaFunc(getUserInputString)
|
||||
{
|
||||
luaReturnStr(dsq->getUserInputString(getString(L, 1), getString(L, 2), true).c_str());
|
||||
}
|
||||
|
||||
|
||||
luaFunc(inv_isFull)
|
||||
{
|
||||
|
@ -8658,6 +8663,12 @@ luaFunc(text_setAlign)
|
|||
luaReturnNil();
|
||||
}
|
||||
|
||||
luaFunc(text_getHeight)
|
||||
{
|
||||
BaseText *txt = getText(L);
|
||||
luaReturnNum(txt ? txt->getHeight() : 0.0f);
|
||||
}
|
||||
|
||||
luaFunc(loadShader)
|
||||
{
|
||||
int handle = 0;
|
||||
|
@ -9314,6 +9325,7 @@ static const struct {
|
|||
luaRegister(getObstruction),
|
||||
luaRegister(findPath),
|
||||
luaRegister(castLine),
|
||||
luaRegister(getUserInputString),
|
||||
|
||||
luaRegister(isFlag),
|
||||
|
||||
|
@ -9706,6 +9718,7 @@ static const struct {
|
|||
luaRegister(text_setFontSize),
|
||||
luaRegister(text_setWidth),
|
||||
luaRegister(text_setAlign),
|
||||
luaRegister(text_getHeight),
|
||||
|
||||
luaRegister(loadShader),
|
||||
luaRegister(createShader),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue