| 3974 | static void PushNodeListToTable(lua_State* L, dmGui::HScene scene, uint16_t start_index); |
| 3975 | |
| 3976 | static void PushNodeToTable(lua_State* L, dmGui::HScene scene, InternalNode* n) |
| 3977 | { |
| 3978 | dmGui::HNode node = GetNodeHandle(n); |
| 3979 | dmScript::PushHash(L, n->m_NameHash); |
| 3980 | LuaPushNode(L, scene, node); |
| 3981 | lua_rawset(L, -3); |
| 3982 | PushNodeListToTable(L, scene, n->m_ChildHead); |
| 3983 | } |
| 3984 | |
| 3985 | static void PushNodeListToTable(lua_State* L, dmGui::HScene scene, uint16_t start_index) |
| 3986 | { |
no test coverage detected