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 |
/** * * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class UTTeamStaticMesh extends StaticMeshActor; /** material used when owned by a team */ var() array<MaterialInterface> TeamMaterials; /** material used when not owned by a team or when the TeamMaterials array doesn't contain an entry for the requested team */ var() Material NeutralMaterial; simulated event PreBeginPlay() { local UTGameObjective O, Best; local float Distance, BestDistance; if (WorldInfo.NetMode != NM_DedicatedServer) { BestDistance = 1000000.f; foreach WorldInfo.AllNavigationPoints(class'UTGameObjective', O) { Distance = VSize(Location - O.Location); if (Distance < BestDistance) { BestDistance = Distance; Best = O; } } if (Best != None) { Best.AddTeamStaticMesh(self); } else { SetTeamNum(255); } } } simulated function SetTeamNum(byte NewTeam) { if (WorldInfo.NetMode != NM_DedicatedServer) { if (NewTeam < TeamMaterials.length) { StaticMeshComponent.SetMaterial(0, TeamMaterials[NewTeam]); } else { StaticMeshComponent.SetMaterial(0, NeutralMaterial); } } } defaultproperties { TeamMaterials(0)=None TeamMaterials(1)=None Begin Object Class=StaticMeshComponent Name=StaticMeshComponent0 ObjName=StaticMeshComponent0 Archetype=StaticMeshComponent'Engine.Default__StaticMeshActor:StaticMeshComponent0' ObjectArchetype=StaticMeshComponent'Engine.Default__StaticMeshActor:StaticMeshComponent0' End Object StaticMeshComponent=StaticMeshComponent0 Components(0)=StaticMeshComponent0 bStatic=False bStasis=True BlockRigidBody=False CollisionComponent=StaticMeshComponent0 CollisionType=COLLIDE_CustomDefault Name="Default__UTTeamStaticMesh" ObjectArchetype=StaticMeshActor'Engine.Default__StaticMeshActor' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |