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 |
//----------------------------------------------------------- // //----------------------------------------------------------- class ONSBomber extends ONSPlaneCraft; #exec OBJ LOAD FILE=..\Animations\ONSVehicles-A.ukx var() float MaxPitchSpeed; simulated event DrivingStatusChanged() { if (bDriving) Enable('Tick'); else Disable('Tick'); } simulated function Tick(float DeltaTime) { local float EnginePitch; if(Level.NetMode != NM_DedicatedServer) { EnginePitch = 96.0 + VSize(Velocity)/MaxPitchSpeed * 32.0; SoundPitch = FClamp(EnginePitch, 96, 128); } Super.Tick(DeltaTime); } defaultproperties { MaxPitchSpeed=3200.000000 LiftCoefficientCurve=(Points=((InVal=-180.000000),(InVal=-10.000000),(OutVal=0.400000),(InVal=6.000000,OutVal=0.800000),(InVal=10.000000,OutVal=1.200000),(InVal=12.000000,OutVal=1.400000),(InVal=20.000000,OutVal=0.800000),(InVal=60.000000,OutVal=0.600000),(InVal=90.000000),(InVal=180.000000))) DragCoefficientCurve=(Points=((InVal=-180.000000),(InVal=-90.000000,OutVal=1.200000),(InVal=-10.000000,OutVal=0.100000),(InVal=-5.000000,OutVal=0.350000),(OutVal=0.010000),(InVal=5.000000,OutVal=0.350000),(InVal=10.000000,OutVal=0.100000),(InVal=15.000000,OutVal=0.300000),(InVal=60.000000,OutVal=1.000000),(InVal=90.000000,OutVal=1.200000),(InVal=180.000000))) AirFactor=0.000050 MaxThrust=110.000000 ThrustAcceleration=60.000000 bHoverOnGround=Wahr COMHeight=20.000000 HoverForceCurve=(Points=((OutVal=500.000000),(InVal=30.000000,OutVal=700.000000),(InVal=250.000000))) ThrusterOffsets(0)=(X=200.000000,Z=10.000000) ThrusterOffsets(1)=(X=-50.000000,Y=300.000000,Z=10.000000) ThrusterOffsets(2)=(X=-50.000000,Y=-300.000000,Z=10.000000) HoverSoftness=0.900000 HoverPenScale=1.500000 HoverCheckDist=500.000000 PitchTorque=700.000000 BankTorque=700.000000 DriverWeapons(0)=(WeaponClass=Class'OnslaughtFull.ONSBombDropper',WeaponBone="FrontGunMount") RedSkin=Shader'ONSFullTextures.BomberGroup.BomberChassisFinalRED' BlueSkin=Shader'ONSFullTextures.BomberGroup.BomberChassisFinalBLUE' IdleSound=Sound'ONSVehicleSounds-S.Flying.Flying02' ImpactDamageThreshold=1000.000000 ImpactDamageMult=0.030000 VehicleMass=4.000000 bDrawMeshInFP=Wahr ExitPositions(0)=(Y=500.000000,Z=100.000000) ExitPositions(1)=(Y=-500.000000,Z=100.000000) ExitPositions(2)=(X=350.000000,Z=100.000000) ExitPositions(3)=(X=-350.000000,Z=100.000000) MomentumMult=0.050000 VehiclePositionString="in a DragonFly" VehicleNameString="DragonFly" HealthMax=600.000000 Health=600 Mesh=SkeletalMesh'ONSFullAnimations.Bomber' DrawScale=0.700000 Begin Object Class=KarmaParamsRBFull Name=KParams0 KInertiaTensor(0)=3.500000 KInertiaTensor(3)=10.000000 KInertiaTensor(5)=13.000000 KCOMOffset=(X=0.650000) KLinearDamping=0.000000 KAngularDamping=1.500000 KStartEnabled=Wahr bKNonSphericalInertia=Wahr KActorGravScale=2.000000 KMaxSpeed=4000.000000 bHighDetailOnly=Falsch bClientOnly=Falsch bKDoubleTickRate=Wahr bDestroyOnWorldPenetrate=Wahr bDoSafetime=Wahr KFriction=0.600000 KImpactThreshold=300.000000 End Object KParams=KarmaParamsRBFull'OnslaughtFull.ONSBomber.KParams0' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |