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 00096 00097 00098 00099 00100 |
/** * * Copyright 1998-2007 Epic Games, Inc. All Rights Reserved. */ class UTDroppedShieldBelt extends UTDroppedItemPickup; var int ShieldAmount; function DroppedFrom(Pawn P) { local UTPawn UTP; UTP = UTPawn(P); if (UTP != None) { ShieldAmount = UTP.ShieldBeltArmor; UTP.ShieldBeltArmor = 0; UTP.SetOverlayMaterial(None); } } function GiveTo(Pawn P) { local UTPawn UTP; UTP = UTPawn(P); UTP.ShieldBeltArmor = Max(ShieldAmount, UTP.ShieldBeltArmor); UTP.ShieldBeltPickupClass = Class; if (UTP.GetOverlayMaterial() == None) { UTP.SetOverlayMaterial(UTP.GetShieldMaterialInstance(WorldInfo.Game.bTeamGame)); } PickedUpBy(P); } function int CanUseShield(UTPawn P) { return Max(0, ShieldAmount - P.ShieldBeltArmor); } function float BotDesireability(Pawn Bot, Controller C) { if ( UTPawn(Bot) == None ) return 0; return (0.013 * MaxDesireability * CanUseShield(UTPawn(Bot))); } auto state Pickup { /* Validate touch (if valid return true to let other pick me up and trigger event). */ function bool ValidTouch(Pawn Other) { return (UTPawn(Other) != None && CanUseShield(UTPawn(Other)) > 0 && Super.ValidTouch(Other)); } } defaultproperties { ShieldAmount=100 MaxDesireability=1.500000 PickupSound=SoundCue'A_Pickups.ShieldBelt.Cue.A_Pickups_Shieldbelt_Activate_Cue' Begin Object Class=StaticMeshComponent Name=ArmorPickUpComp ObjName=ArmorPickUpComp Archetype=StaticMeshComponent'Engine.Default__StaticMeshComponent' StaticMesh=StaticMesh'PICKUPS.Armor_ShieldBelt.Mesh.S_UN_Pickups_Shield_Belt' LightEnvironment=DynamicLightEnvironmentComponent'UTGameContent.Default__UTDroppedShieldBelt:DroppedPickupLightEnvironment' CullDistance=7000.000000 CachedCullDistance=7000.000000 bUseAsOccluder=False CastShadow=False bForceDirectLightMap=True bCastDynamicShadow=False LightingChannels=(BSP=True,Static=True) CollideActors=False Scale3D=(X=1.500000,Y=1.500000,Z=1.500000) Name="ArmorPickUpComp" ObjectArchetype=StaticMeshComponent'Engine.Default__StaticMeshComponent' End Object PickupMesh=ArmorPickUpComp Begin Object Class=DynamicLightEnvironmentComponent Name=DroppedPickupLightEnvironment ObjName=DroppedPickupLightEnvironment Archetype=DynamicLightEnvironmentComponent'UTGame.Default__UTDroppedItemPickup:DroppedPickupLightEnvironment' ObjectArchetype=DynamicLightEnvironmentComponent'UTGame.Default__UTDroppedItemPickup:DroppedPickupLightEnvironment' End Object MyLightEnvironment=DroppedPickupLightEnvironment Begin Object Class=SpriteComponent Name=Sprite ObjName=Sprite Archetype=SpriteComponent'UTGame.Default__UTDroppedItemPickup:Sprite' ObjectArchetype=SpriteComponent'UTGame.Default__UTDroppedItemPickup:Sprite' End Object Components(0)=Sprite Begin Object Class=CylinderComponent Name=CollisionCylinder ObjName=CollisionCylinder Archetype=CylinderComponent'UTGame.Default__UTDroppedItemPickup:CollisionCylinder' ObjectArchetype=CylinderComponent'UTGame.Default__UTDroppedItemPickup:CollisionCylinder' End Object Components(1)=CollisionCylinder Components(2)=DroppedPickupLightEnvironment Components(3)=ArmorPickUpComp CollisionComponent=CollisionCylinder Name="Default__UTDroppedShieldBelt" ObjectArchetype=UTDroppedItemPickup'UTGame.Default__UTDroppedItemPickup' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |