I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX

Legacy:Create A Mover

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

This is a Category:Legacy Basic Procedure tutorial page. It explains how to perform a single procedure which is required in many different contexts.

Introduction[edit]

A mover in UT2003 and later is simply a static mesh that changes its position and orientation.

See Create A Mover (UT) for how to create a mover in Unreal Tournament.

Adding the Mover[edit]

Tweak Properties[edit]

You may want to set the following properties of the Mover:

  • Set Display -> bStaticLighting to True – otherwise your mover will not be lit.
  • Set Collision -> bBlockKarma to True if the mover is in a position that dead players could interact with it.

Your mover is now placed in your map. But it's not going to do anything yet. There are two more things to do: tell your mover how to move (in which direction and orientation), and set up some way of telling it when to move (trigger, touch, etc).

Setting Up Keyframes[edit]

So you have your mover looking the way you want it, and you have a static mesh of your mover's likeness. Now what? Well you need to animate it. So go on to the Keyframe page and find out how to put a little life into your mover.

Activating the Mover[edit]

A Mover doesn't do much good just sitting there. You need something to activate it in order for it to do its job at the appropriate time. See Activating A Mover for details.

Related Topics[edit]