Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
Dagger147

Mid Texture on 3D Floor

Recommended Posts

This has probably been asked a million times, but I haven't found anything specific in my search.

I have a rail on a 3D floor. If I set the linedef as impassable, the player is unable to walk under the 3D floor where the linedef is located. The 3D floor is raised up quite a bit, and I don't want the player to fall off. Is there a trick that I can do that will allow me to set the impassable flag and still allow the player to walk underneath the 3D floor?

Here's an image that may assist:

Share this post


Link to post
Graf Zahl said:

If you don't use UDMF you have to set it with the Line_SetIdentification special.


It is in UDMF.

Share this post


Link to post

It is there, but with a different name in the configuration file:

linedefflags_udmf
{
	monsteractivate = "Monster activates";
	blockeverything = "Block everything";
	blockplayers = "Block players";
	blockfloaters = "Block floating";
	translucent = "Translucent";
	jumpover = "Jump-over railing";
	zoneboundary = "Sound zone boundary";
	clipmidtex = "Clip middle texture";
	wrapmidtex = "Wrap middle texture";
	midtex3d = "Walkable middle texture";
	blockprojectiles = "Block projectiles";
	blockuse = "Block use actions";
	blocksight = "Block monster line of sight";
}
So, check "Walkable middle texture".

Share this post


Link to post
Gez said:

It is there, but with a different name in the configuration file:

linedefflags_udmf
{
	monsteractivate = "Monster activates";
	blockeverything = "Block everything";
	blockplayers = "Block players";
	blockfloaters = "Block floating";
	translucent = "Translucent";
	jumpover = "Jump-over railing";
	zoneboundary = "Sound zone boundary";
	clipmidtex = "Clip middle texture";
	wrapmidtex = "Wrap middle texture";
	midtex3d = "Walkable middle texture";
	blockprojectiles = "Block projectiles";
	blockuse = "Block use actions";
	blocksight = "Block monster line of sight";
}
So, check "Walkable middle texture".


That was it. Thanks so much for the help.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
×