mirror of
https://github.com/minetest/minetest.git
synced 2024-12-23 22:52:25 +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)
|
||||
{
|
||||
Camera *camera = getobject(L, 1);
|
||||
if (!camera)
|
||||
return 0;
|
||||
LocalPlayer *player = getClient(L)->getEnv().getLocalPlayer();
|
||||
sanity_check(player);
|
||||
|
||||
push_v3s16(L, camera->getOffset());
|
||||
push_v3f(L, player->getEyeOffset() / BS);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user