My program doesn't have bugs. It just develops random features.

Difference between revisions of "Legacy:Create A Mover"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
 
Line 8: Line 8:
  
 
==Adding the Mover==
 
==Adding the Mover==
 
 
* [[Legacy:Create A Static Mesh|Create a static mesh]] that has your new mover's desired shape, or find an existing one that suits your needs
 
* [[Legacy:Create A Static Mesh|Create a static mesh]] that has your new mover's desired shape, or find an existing one that suits your needs
 
* Select it in the [[Legacy:Static Mesh Browser|static mesh browser]].
 
* Select it in the [[Legacy:Static Mesh Browser|static mesh browser]].
 
* Click the ''Add Mover Brush'' button in the UnrealEd [[Legacy:Toolbox|toolbox]].
 
* Click the ''Add Mover Brush'' button in the UnrealEd [[Legacy:Toolbox|toolbox]].
  
==Tweak a couple things==
+
==Tweak Properties==
  
 
You may want to [[Legacy:Set The Following Properties|set the following properties]] of the Mover:
 
You may want to [[Legacy:Set The Following Properties|set the following properties]] of the Mover:
 
 
* Set Display -> ''bStaticLighting'' to ''True'' –  otherwise your mover will not be lit.
 
* 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.
 
* Set Collision -> ''bBlockKarma'' to ''True'' if the mover is in a position that dead players could interact with it.
 
==What next==
 
  
 
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).
 
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).
Line 34: Line 30:
 
==Related Topics==
 
==Related Topics==
 
* [[Legacy:Mover Topics|Mover Topics]]
 
* [[Legacy:Mover Topics|Mover Topics]]
 +
* [[:Category:Legacy Basic Procedure]]
 +
* [[Legacy:Mover|Mover]]
 +
* [[Legacy:ClientMover|ClientMover]] – For decoration (non-interactive) only
 +
 +
[[Category:Legacy Basic Procedure|{{PAGENAME}}]]
 
[[Category:Legacy Basic Procedure|{{PAGENAME}}]]
 
[[Category:Legacy Basic Procedure|{{PAGENAME}}]]
 +
[[Category:Legacy Mapping|{{PAGENAME}}]]

Latest revision as of 20:07, 28 December 2005

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]