I am trying to take a square where I defined an invisible wall and two dungwon_wall_01 textures on either side. When I hit a button I want the wall to disappear (making an open corridor). I try this code:
Code: Select all
dungeon_wall_01_6.model:disable()
dungeon_wall_01_4.model:disable()
invisible_wall_1.obstacle:setBlockParty(false)
The setBlockParty() works great. However, disabling the models creates serious graphics glitches. For one, I can't look past the square, Its black. And there is texture flashing in the ground texture (which I didn't touch). It is not working well. I even tried disabling the occlude too. This did not affect the behavior. Does disabling models work? I have seen other code examples where its done....