add camera:look_at optional interpolation parameter

This commit is contained in:
MihailRis
2024-07-22 19:32:05 +03:00
parent e0cb57a10a
commit 058daf6117
4 changed files with 15 additions and 2 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ local Camera = {__index={
get_front=function(self) return cameras.get_front(self.cid) end,
get_right=function(self) return cameras.get_right(self.cid) end,
get_up=function(self) return cameras.get_up(self.cid) end,
look_at=function(self, v) return cameras.look_at(self.cid, v) end,
look_at=function(self, v, f) return cameras.look_at(self.cid, v, f) end,
}}
local wrappers = {}