Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Andrea Rovenski

How to make a 3d floor?

Recommended Posts

I'm using Doombuilder 2 and GZDoom.
Here's my script, (note: this is my first attempt)

Sector_Set3dFloor(98, 1, 16, 0, 8);

I followed the wiki to the best of my comprehensive ability.

Share this post


Link to post
Manhunt21 said:

script

There's your problem right there. The special is attached to a line in the control sector, not in a script.

Share this post


Link to post

  1. Give the sector (the one where you want the 3D floor to appear) a new tag.
  2. Create a control sector (a new sector outside your map - most mappers make it triangular to keep the number of linedefs low).
  3. The control sector must have the following properties:

    ZDoom Wiki said:
    The ceiling of the control sector will be the floor of the 3D floor and the floor of the control sector will be the bottom of the 3d floor.

  4. Set the linedef action 160:Sector_Set3dFloor to one of the linedefs that surrounds the control sector. Its middle texture will be used for the sides of the 3D floor (unless you specify it differently with the flags argument).
  5. Set the lindef action's first argument to the sector tag of the sector containing the 3D floor (the one from step 1).
  6. Set all the other arguments the way you want them to be (you can read more about what each argument does here on the ZDoom Wiki).
Read more ...

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
×