Once I get that upgrade to 36-hour days, I will tackle that. – Mychaeel

UE2:GravityTrigger (UT2004)

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 14:18, 5 April 2010 by Crusha (Talk | contribs)

Jump to: navigation, search
UT2004 Object >> Actor >> Triggers >> GravityTrigger
Package: 
UnrealGame

Changes gravity of ALL PhysicsVolumes to the specified value when being triggered. JumpPads are adjusted to work properly with the new gravity.

Properties

Property group 'GravityTrigger'

GravityZ

Type: float

The new acceleration along the Z-axis. This should be negative to simulate gravity. Too low (around 0) or too high values should be avoided, the engine doesn't like them. From the code it seems like the gravity of a Volume is only changed, when the new value higher than the old one is.

Default value: -300.0

VolumeTag

Type: name Change only Volumes with this Tag. Change all Volumes if this is blank.

Default values

Property Value
bCollideActors False

Events

Trigger

event Trigger (Actor Other, Pawn EventInstigator)

Overrides: Actor.Trigger

Iterates through all PhysicsVolumes (optional with the VolumeTag) and sets the new gravity if the old value is not higher than the new one. Then it forces the Volume to update in netplay. The Level's DefaultGravity is set to the one of the DefaultPhysicsVolume. At last are the JumpPads adjusted.