There is no spoon

Legacy:How To Make Elevators With Doors That Follow The Lift

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search

This is a work around for ?UT,?UT2003,UT2004,

By VitalOverdose

The bHardAttach issue[edit]

Anyone who's made a few maps must have tried to make an elevator...

for those of you that haven't.. the doors are a bit of a problem.You can make the doors follow the elevator AND move apart to open. Once you have set the 'bHardAttach' in the default properties for the doors (to make them follow the lift) the X, Y and Z of the door becomes locked to that of the lift cab. In other words you cant make them move in any direction.

Solution[edit]

Its only the vector position of the pivot that cannot be altered..not its rotaion.


Legacy FOD Elevatorcabtop.jpeg
make the elevator ROUND,make the doors CURVED.


The trick to this is to make your elevator from a cylinder and not the traditional 'box' shape.

Think of a revolving door, its X,Y,Z position never actually moves yet the mesh is moving. It works on the same principal as this method.

  1. Create a cylinder shape and hollow it out.
  2. Use the builder brush to Quarter a section of the cab to create the door shape
    • Alternative: use Tarquin's cylinder builder to create a hollow cylinder
  3. Position the builder brush/door shape to its closed position on the lift cab.
  4. In the top down view set the pivot to the center of the cab, then 'create new static mesh'.
  5. (package=mylevel,name=door)
  6. (You will end up with door meshes with a pivot way off from the actual mesh but don't worry).
  7. leave the builder brush in the door shape for the moment as we'll use it for setting the collision in a moment

Now go to the static mesh browser select 'mylevel' and with any luck you should now have your door mesh.

If you have troubles getting the pivot in the right place you may want to consider using a separate subtracted box (building room) elsewhere to create the mesh.

Add the door mesh back to the level and position the builder brush over it then right click on the brush and pick 'use brush as collision'. You can check if the collision has been set in the static mesh browser.

[[Image:Legacy_FOD_Elevatorcab1.jpeg|]]

Use the remaining cylinder to create the lift cab.

Put the doors (movers)into a 'closed position' on the elevator before setting the pivot in the center of the elevator.

Now add the doors as movers and hard attach them to the elevator.

With the door pivot in the center of the round lift give the movers 2 keyframes for the open/closed action but ONLY use rotate to set the keyframes.

Don't move the pivot from the center of the cab when setting the keyframes.

And there you have it.....working elevator doors that follow the lift.

Discussion[edit]

Ragdoll: I have pivoting-outward (not sliding) doors attached to a cube-ish mover and they close and follow fine, but when the lift reaches its destination and triggers the door to open the doors fly back to the starting station. I know why this is happening-the key0 position that i set is back at the station and the door remembers that and goes back there rather than remain attached to the lift and open out at the 2nd station-but how can I fix this? Thanks in advance.

VitalOverdose Its probably down the the pivot moving as well as rotating. If you can design the doors so they can open without the pivot moving having to move at all (just rotate) then it should all work fine. Its like a door hinge, the center of a door hinge never actually changes location on a x,y,z, plane it just changes direction.

computergod666: So what about Attach Movers? I know they use SetBase() calls to attach things to them. Why doesn't that work? (Or does it? I've never tried to make an elevator with attached doors, but I'm scripting a Vehicle for UT and I want to know how to attach things like turrets to it.)