mirror of
https://github.com/ElCeejo/creatura.git
synced 2025-04-30 13:51:41 -04:00
Allow fancy collision to be disabled
This commit is contained in:
parent
027161db41
commit
ad475bb790
1 changed files with 2 additions and 1 deletions
|
@ -937,7 +937,8 @@ local function do_step(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function collision_detection(self)
|
local function collision_detection(self)
|
||||||
if not creatura.is_alive(self) then return end
|
if not creatura.is_alive(self)
|
||||||
|
or self.fancy_collide == false then return end
|
||||||
local pos = self.object:get_pos()
|
local pos = self.object:get_pos()
|
||||||
local width = self.width + 0.25
|
local width = self.width + 0.25
|
||||||
local objects = minetest.get_objects_in_area(vec_sub(pos, width), vec_add(pos, width))
|
local objects = minetest.get_objects_in_area(vec_sub(pos, width), vec_add(pos, width))
|
||||||
|
|
Loading…
Add table
Reference in a new issue