Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class RB_Spring extends ActorComponent native(Physics); // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) /** PrimitiveComponent attached to one end of this spring. */ var const PrimitiveComponent Component1; /** Optional name of bone inside Component1 that spring is attached to (for PhysicsAsset case). */ var const name BoneName1; /** PrimitiveComponent attached to other end of this spring. */ var const PrimitiveComponent Component2; /** Optional name of bone inside Component2 that spring is attached to (for PhysicsAsset case). */ var const name BoneName2; /** Physics scene index. */ var native const int SceneIndex; /** Whether we are in the hardware or software scene. */ var native const bool bInHardware; /** Internal phyiscs engine use. */ var native const pointer SpringData; /** Zeroed when SetComponents is called, this indicates the time the spring has been acting. */ var native const float TimeSinceActivation; /** Minimum mass of bodies connected by spring. */ var const float MinBodyMass; /** Spring extension at which maximum spring force is applied. Force linear ramps up to this point and is constant beyond it. */ var() float SpringSaturateDist; /** Max linear force applied by spring. Multiplied by SpringMaxForceTimeScale before being passed to simulation. */ var() float SpringMaxForce; /** If bEnableForceMassRatio is true, this is maximum allowed ratio between MinBodyMass and the applied spring force. */ var() float MaxForceMassRatio; /** Allows you to limit the maximum force applied by spring based on MinBodyMass. */ var() bool bEnableForceMassRatio; /** * Allows scaling of spring force over time. Time is zeroed when SetComponents is called, * and this curve is a scaling of SpringMaxForce over time from then (in seconds). */ var() InterpCurveFloat SpringMaxForceTimeScale; /** Linear velocity (along spring direction) at which damping force is maximum. */ var() float DampSaturateVel; /** Maximum velocity damping force applied between sprung bodies. */ var() float DampMaxForce; native function SetComponents(PrimitiveComponent InComponent1, Name InBoneName1, vector Position1, PrimitiveComponent InComponent2, Name InBoneName2, vector Position2 ); native function Clear(); defaultproperties { SpringMaxForceTimeScale=(Points=((OutVal=1.000000))) TickGroup=TG_PreAsyncWork Name="Default__RB_Spring" ObjectArchetype=ActorComponent'Engine.Default__ActorComponent' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |