mirror of
https://github.com/minetest/minetest.git
synced 2025-01-12 00:07:35 +01:00
Fix camera:get_offset() in CSM
This commit is contained in:
parent
b57dc70769
commit
682b9de824
@ -108,11 +108,10 @@ int LuaCamera::l_get_pos(lua_State *L)
|
|||||||
|
|
||||||
int LuaCamera::l_get_offset(lua_State *L)
|
int LuaCamera::l_get_offset(lua_State *L)
|
||||||
{
|
{
|
||||||
Camera *camera = getobject(L, 1);
|
LocalPlayer *player = getClient(L)->getEnv().getLocalPlayer();
|
||||||
if (!camera)
|
sanity_check(player);
|
||||||
return 0;
|
|
||||||
|
|
||||||
push_v3s16(L, camera->getOffset());
|
push_v3f(L, player->getEyeOffset() / BS);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user