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 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. * * Used to affect level streaming in the game and level visibility in the editor. */ class LevelStreamingVolume extends Volume native hidecategories(Advanced,Attachment,Collision,Volume) placeable; /** Levels affected by this level streaming volume. */ var() noimport const editconst array<LevelStreaming> StreamingLevels; /** If TRUE, this streaming volume should only be used for editor streaming level previs. */ var() bool bEditorPreVisOnly; /** * If TRUE, this streaming volume is ignored by the streaming volume code. Used to either * disable a level streaming volume without disassociating it from the level, or to toggle * the control of a level's streaming between Kismet and volume streaming. */ var() bool bDisabled; /** Enum for different usage cases of level streaming volumes. */ enum EStreamingVolumeUsage { SVB_Loading, SVB_LoadingAndVisibility, SVB_VisibilityBlockingOnLoad, SVB_BlockingOnLoad, SVB_LoadingNotVisible }; /** Determines what this volume is used for, e.g. whether to control loading, loading and visibility or just visibilty (blocking on load) */ var() EStreamingVolumeUsage Usage; /** * Kismet support for toggling bDisabled. */ simulated function OnToggle(SeqAct_Toggle action) { if (action.InputLinks[0].bHasImpulse) { // "Turn On" -- mapped to enabling of volume streaming for this volume. bDisabled = FALSE; } else if (action.InputLinks[1].bHasImpulse) { // "Turn Off" -- mapped to disabling of volume streaming for this volume. bDisabled = TRUE; } else if (action.InputLinks[2].bHasImpulse) { // "Toggle" bDisabled = !bDisabled; } } // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) defaultproperties { Begin Object Class=BrushComponent Name=BrushComponent0 ObjName=BrushComponent0 Archetype=BrushComponent'Engine.Default__Volume:BrushComponent0' CollideActors=False BlockNonZeroExtent=False ObjectArchetype=BrushComponent'Engine.Default__Volume:BrushComponent0' End Object BrushComponent=BrushComponent0 Components(0)=BrushComponent0 bCollideActors=False CollisionComponent=BrushComponent0 CollisionType=COLLIDE_CustomDefault Name="Default__LevelStreamingVolume" ObjectArchetype=Volume'Engine.Default__Volume' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |