mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-06-08 17:42:05 +00:00
Add isSkippingCutscene() Lua function
This commit is contained in:
parent
209964034d
commit
f6fc75a165
1 changed files with 6 additions and 0 deletions
|
@ -3137,6 +3137,11 @@ luaFunc(createShot)
|
||||||
luaReturnPtr(s);
|
luaReturnPtr(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
luaFunc(isSkippingCutscene)
|
||||||
|
{
|
||||||
|
luaReturnBool(dsq->isSkippingCutscene());
|
||||||
|
}
|
||||||
|
|
||||||
// deprecated, use entity_playSfx
|
// deprecated, use entity_playSfx
|
||||||
luaFunc(entity_sound)
|
luaFunc(entity_sound)
|
||||||
{
|
{
|
||||||
|
@ -9995,6 +10000,7 @@ static const struct {
|
||||||
luaRegister(getNumberOfEntitiesNamed),
|
luaRegister(getNumberOfEntitiesNamed),
|
||||||
|
|
||||||
luaRegister(isNested),
|
luaRegister(isNested),
|
||||||
|
luaRegister(isSkippingCutscene),
|
||||||
|
|
||||||
luaRegister(entity_idle),
|
luaRegister(entity_idle),
|
||||||
luaRegister(entity_stopAllAnimations),
|
luaRegister(entity_stopAllAnimations),
|
||||||
|
|
Loading…
Add table
Reference in a new issue