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 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 |
//============================================================================= // The Basic constraint class. //============================================================================= class KConstraint extends KActor abstract placeable native; #exec Texture Import File=Textures\S_KConstraint.pcx Name=S_KConstraint Mips=Off MASKED=1 // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // Used internally for Karma stuff - DO NOT CHANGE! var transient const pointer KConstraintData; // Actors joined effected by this constraint (could be NULL for 'World') var(KarmaConstraint) edfindable Actor KConstraintActor1; var(KarmaConstraint) edfindable Actor KConstraintActor2; // If an KConstraintActor is a skeletal thing, you can specify which bone inside it // to attach the constraint to. If left blank (the default) it picks the nearest bone. var(KarmaConstraint) name KConstraintBone1; var(KarmaConstraint) name KConstraintBone2; // Disable collision between joined var(KarmaConstraint) const bool bKDisableCollision; // Constraint position/orientation, as defined in each body's local reference frame // These are in KARMA scale! // Body1 ref frame var vector KPos1; var vector KPriAxis1; var vector KSecAxis1; // Body2 ref frame var vector KPos2; var vector KPriAxis2; var vector KSecAxis2; // Force constraint to re-calculate its position/axis in local ref frames // Usually true for constraints saved out of UnrealEd, false for everything else var const bool bKForceFrameUpdate; // [see KForceExceed below] var(KarmaConstraint) float KForceThreshold; // This function is used to re-sync constraint parameters (eg. stiffness) with Karma. // Call when you change a parameter to get it to actually take effect. native function KUpdateConstraintParams(); native final function KGetConstraintForce(out vector Force); native final function KGetConstraintTorque(out vector Torque); // Event triggered when magnitude of constraint (linear) force exceeds KForceThreshold event KForceExceed(float forceMag); defaultproperties { bKDisableCollision=Wahr KPriAxis1=(X=1.000000) KSecAxis1=(Y=1.000000) KPriAxis2=(X=1.000000) KSecAxis2=(Y=1.000000) DrawType=DT_Sprite bHidden=Wahr Texture=Texture'Engine.S_KConstraint' bCollideActors=Falsch bBlockActors=Falsch bProjTarget=Falsch bBlockKarma=Falsch } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |