There is no spoon

UE3:LevelStreamingVolume (UDK)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UDK Object >> Actor >> Brush >> Volume >> LevelStreamingVolume
Package: 
Engine
This class in other games:
UT3

Used to affect level streaming in the game and level visibility in the editor.

Properties[edit]

Property group 'LevelStreamingVolume'[edit]

bDisabled[edit]

Type: bool

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.

bEditorPreVisOnly[edit]

Type: bool

If TRUE, this streaming volume should only be used for editor streaming level previs.

bTestDistanceToVolume[edit]

Type: bool

If TRUE, level will stream when closer than TestVolumeDistance to the volume.

StreamingLevels[edit]

Type: array<LevelStreaming>

Modifiers: noimport, const, editconst

Levels affected by this level streaming volume.

TestVolumeDistance[edit]

Type: float

If bTestDistanceToVolume is TRUE, level will stream in if closer than this to volume.

Usage[edit]

Type: EStreamingVolumeUsage

Determines what this volume is used for, e.g. whether to control loading, loading and visibility or just visibilty (blocking on load)

Default values[edit]

Property Value
bCollideActors False
bForceAllowKismetModification True
CollisionType COLLIDE_CustomDefault

Subobjects[edit]

BrushComponent0[edit]

Class: Engine.BrushComponent

Inherits from: Volume.BrushComponent0

Property Value
BlockNonZeroExtent False
CollideActors False
ReplacementPrimitive None

Enums[edit]

EStreamingVolumeUsage[edit]

Enum for different usage cases of level streaming volumes.

SVB_Loading 
SVB_LoadingAndVisibility 
SVB_VisibilityBlockingOnLoad 
SVB_BlockingOnLoad 
SVB_LoadingNotVisible 

Structs[edit]

CheckpointRecord[edit]

bool bDisabled 

Instance functions[edit]

ApplyCheckpointRecord[edit]

function ApplyCheckpointRecord (const out CheckpointRecord Record)


CreateCheckpointRecord[edit]

function CreateCheckpointRecord (out CheckpointRecord Record)


OnToggle[edit]

simulated function OnToggle (SeqAct_Toggle action)

Overrides: Volume.OnToggle

Kismet support for toggling bDisabled.