I don't need to test my programs. I have an error-correcting modem.

Difference between revisions of "UE3:UIAction OpenScene (UDK)"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
(Talk)
 
(Talk)
Line 38: Line 38:
 
|  
 
|  
 
{| class="list defaults"
 
{| class="list defaults"
! {{tl|SeqVarLink||SequenceOp|Member}}
+
! {{tl|SeqVarLink||SequenceOp structs|Member}}
 
! Value
 
! Value
 
|-
 
|-
Line 57: Line 57:
 
|  
 
|  
 
{| class="list defaults"
 
{| class="list defaults"
! {{tl|SeqVarLink||SequenceOp|Member}}
+
! {{tl|SeqVarLink||SequenceOp structs|Member}}
 
! Value
 
! Value
 
|-
 
|-
Line 80: Line 80:
 
'''Overrides:''' {{tl|GetObjClassVersion|UIAction_Scene}}
 
'''Overrides:''' {{tl|GetObjClassVersion|UIAction_Scene}}
  
''(Description copied from {{tl|GetObjClassVersion|UIAction_Scene}})''<br/>
 
 
Return the version number for this class.  Child classes should increment this method by calling Super then adding
 
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
 
a individual class version to the result.  When a class is first created, the number should be 0; each time one of the

Revision as of 05:24, 17 January 2010

UDK Object >> SequenceObject >> SequenceOp >> SequenceAction >> UIAction >> UIAction_Scene >> UIAction_OpenScene
Package: 
Engine
This class in other games:
UT3

Opens a new scene.

Properties

Property group 'UIAction_OpenScene'

DesiredPlayerIndex

Type: int

the index for the player that should be set as the player owner of the scene being opened. Value of -1 indicates that the player index should come from the op that applies impulse to this op's input link

Default value: -1

Internal variables

OpenedScene

Type: UIScene

Output variable for the scene that was opened.

Default values

Property Value
ObjName "Open Scene"
VariableLinks[3]
Member Value
bWriteable True
ExpectedType Class'Engine.SeqVar_Object'
LinkDesc "Opened Scene"
PropertyName 'OpenedScene'
VariableLinks[4]
Member Value
bHidden True
ExpectedType Class'Engine.SeqVar_Int'
LinkDesc "Player Index Override"
PropertyName 'DesiredPlayerIndex'

Static events

GetObjClassVersion

static event int GetObjClassVersion ()

Overrides: UIAction_Scene.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.