UE3:SeqAct PlaySound (UDK): Difference between revisions

From Unreal Wiki, The Unreal Engine Documentation Site
No edit summary
 
No edit summary
Line 74: Line 74:
|  
|  
{| class="list defaults"
{| class="list defaults"
! {{tl|SeqOpInputLink||SequenceOp|Member}}
! {{tl|SeqOpInputLink||SequenceOp structs|Member}}
! Value
! Value
|-
|-
Line 84: Line 84:
|  
|  
{| class="list defaults"
{| class="list defaults"
! {{tl|SeqOpInputLink||SequenceOp|Member}}
! {{tl|SeqOpInputLink||SequenceOp structs|Member}}
! Value
! Value
|-
|-
Line 100: Line 100:
|  
|  
{| class="list defaults"
{| class="list defaults"
! {{tl|SeqOpOutputLink||SequenceOp|Member}}
! {{tl|SeqOpOutputLink||SequenceOp structs|Member}}
! Value
! Value
|-
|-
Line 110: Line 110:
|  
|  
{| class="list defaults"
{| class="list defaults"
! {{tl|SeqOpOutputLink||SequenceOp|Member}}
! {{tl|SeqOpOutputLink||SequenceOp structs|Member}}
! Value
! Value
|-
|-
Line 120: Line 120:
|  
|  
{| class="list defaults"
{| class="list defaults"
! {{tl|SeqOpOutputLink||SequenceOp|Member}}
! {{tl|SeqOpOutputLink||SequenceOp structs|Member}}
! Value
! Value
|-
|-

Revision as of 05:24, 17 January 2010

UDK Object >> SequenceObject >> SequenceOp >> SequenceAction >> SeqAct_Latent >> SeqAct_PlaySound
Package:
Engine
This class in other games:


Properties

Property group 'SeqAct_PlaySound'

bSuppressSubtitles

Type: bool

TRUE to suppress display of any subtitles the soundcue may have. FALSE for normal subtitle behavior.

ExtraDelay

Type: float

Additional dead space to append to SoundDuration

FadeInTime

Type: float

Time taken for sound to fade in when action is activated.

FadeOutTime

Type: float

Time take for sound to fade out when Stop input is fired.

PitchMultiplier

Type: float

Pitch multiplier propagated to audio component

Default value: 1.0

PlaySound

Type: SoundCue

Sound cue to play on the targeted actor(s)

VolumeMultiplier

Type: float

Volume multiplier propagated to audio component

Default value: 1.0

Internal variables

bStopped

Type: bool

Modifiers: transient

Was this sound stopped?

SoundDuration

Type: float

Modifiers: transient

Remaining duration of sound, for timing activation of 'Finished' output

Default values

Property Value
InputLinks[0]
Member Value
LinkDesc "Play"
InputLinks[1]
Member Value
LinkDesc "Stop"
ObjCategory "Sound"
ObjName "Play Sound"
OutputLinks[0]
Member Value
LinkDesc "Out"
OutputLinks[1]
Member Value
LinkDesc "Finished"
OutputLinks[2]
Member Value
LinkDesc "Stopped"

Static events

GetObjClassVersion

static event int GetObjClassVersion ()

Overrides: SequenceObject.GetObjClassVersion

Return the version number for this class. Child classes should increment this method by calling Super then adding a individual class version to the result. When a class is first created, the number should be 0; each time one of the link arrays is modified (VariableLinks, OutputLinks, InputLinks, etc.), the number that is added to the result of Super.GetObjClassVersion() should be incremented by 1.

Returns:

the version number for this specific class.