MCPcopy Create free account
hub / github.com/defold/defold / CheckTableInteger

Function CheckTableInteger

engine/gamesys/src/gamesys/scripts/script_resource.cpp:524–527  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

522 return CheckTableValue<bool>(L, index, name, default_value);
523}
524static int CheckTableInteger(lua_State* L, int index, const char* name)
525{
526 return CheckTableValue<int>(L, index, name);
527}
528static int CheckTableInteger(lua_State* L, int index, const char* name, int default_value)
529{
530 return CheckTableValue<int>(L, index, name, default_value);

Callers 2

SetTextureFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected