fix(wall): make sure that wall aren't updated
It'll avoid them moving because of a collision.
This commit is contained in:
parent
87ca89364d
commit
cc6056cce8
1 changed files with 4 additions and 0 deletions
|
@ -7,4 +7,8 @@ function Wall:new(world, x, y, z, w, h, d)
|
|||
self.boxes.Base(self, w, h, d)
|
||||
end
|
||||
|
||||
function Wall:update(dt)
|
||||
|
||||
end
|
||||
|
||||
return Wall
|
||||
|
|
Loading…
Reference in a new issue