| 185 | // *********************************************************************** |
| 186 | |
| 187 | int LuaTranslate(lua_State* pLua) { |
| 188 | f32 x = (f32)luaL_checknumber(pLua, 1); |
| 189 | f32 y = (f32)luaL_checknumber(pLua, 2); |
| 190 | f32 z = (f32)luaL_checknumber(pLua, 3); |
| 191 | Translate(Vec3f(x, y, z)); |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | // *********************************************************************** |
| 196 |
nothing calls this directly
no test coverage detected