Class PlayerEnterExit.TransitionEventArgs
Arguments for PlayerEnterExit events. All interior/exterior/dungeon transitions use these arguments. Valid members will depend on which transition event was fired.
Namespace: DaggerfallWorkshop.Game
Assembly: Assembly-CSharp.dll
Syntax
public class TransitionEventArgs : EventArgs
Constructors
| Improve this Doc View SourceTransitionEventArgs()
Constructor.
Declaration
public TransitionEventArgs()
TransitionEventArgs(PlayerEnterExit.TransitionType)
Constructor helper.
Declaration
public TransitionEventArgs(PlayerEnterExit.TransitionType transitionType)
Parameters
Type | Name | Description |
---|---|---|
Player |
transitionType |
TransitionEventArgs(PlayerEnterExit.TransitionType, StaticDoor, DaggerfallInterior, DaggerfallDungeon)
Constructor helper.
Declaration
public TransitionEventArgs(PlayerEnterExit.TransitionType transitionType, StaticDoor staticDoor, DaggerfallInterior daggerfallInterior = null, DaggerfallDungeon daggerfallDungeon = null)
Parameters
Type | Name | Description |
---|---|---|
Player |
transitionType | |
Static |
staticDoor | |
Daggerfall |
daggerfallInterior | |
Daggerfall |
daggerfallDungeon |
Properties
| Improve this Doc View SourceDaggerfallDungeon
The newly instanced dungeon interior. For dungeon interior transitions only.
Declaration
public DaggerfallDungeon DaggerfallDungeon { get; set; }
Property Value
Type | Description |
---|---|
Daggerfall |
DaggerfallInterior
The newly instanced building interior. For building interior transitions only.
Declaration
public DaggerfallInterior DaggerfallInterior { get; set; }
Property Value
Type | Description |
---|---|
Daggerfall |
StaticDoor
The exterior StaticDoor clicked to initiate transition. For exterior to interior transitions only.
Declaration
public StaticDoor StaticDoor { get; set; }
Property Value
Type | Description |
---|---|
Static |
TransitionType
The type of transition.
Declaration
public PlayerEnterExit.TransitionType TransitionType { get; set; }
Property Value
Type | Description |
---|---|
Player |