Disabling wall models is not working very well

Ask for help about creating mods and scripts for Grimrock 2 or share your tips, scripts, tools and assets with other modders here. Warning: forum contains spoilers!
Post Reply
MrChoke
Posts: 324
Joined: Sat Oct 25, 2014 7:20 pm

Disabling wall models is not working very well

Post by MrChoke »

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....
User avatar
TSotP
Posts: 74
Joined: Tue Oct 15, 2013 8:42 am

Re: Disabling wall models is not working very well

Post by TSotP »

What about, instead, disabling the model on a square of 4 secret doors? Would that not work? Instead of using the 'dungeon_wall''s? Because they have been giving me trouble as well.
User avatar
Jgwman
Posts: 144
Joined: Thu Jun 28, 2012 10:14 pm

Re: Disabling wall models is not working very well

Post by Jgwman »

Same thing with bridge models. Thought the black stuff might have been buggy shadows but now that you mention it, a random water tile took a shock spell texture for a moment...
MrChoke
Posts: 324
Joined: Sat Oct 25, 2014 7:20 pm

Re: Disabling wall models is not working very well

Post by MrChoke »

I want to use walls though, not secret doors.

What does work though its not ideal is destroying the walls. But then if I want to re-enable the wall, I have to re-spawn them.
Post Reply