Show / Hide Table of Contents

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.

Inheritance
Object
EventArgs
PlayerEnterExit.TransitionEventArgs
Namespace: DaggerfallWorkshop.Game
Assembly: Assembly-CSharp.dll
Syntax
public class TransitionEventArgs : EventArgs

Constructors

| Improve this Doc View Source

TransitionEventArgs()

Constructor.

Declaration
public TransitionEventArgs()
| Improve this Doc View Source

TransitionEventArgs(PlayerEnterExit.TransitionType)

Constructor helper.

Declaration
public TransitionEventArgs(PlayerEnterExit.TransitionType transitionType)
Parameters
Type Name Description
PlayerEnterExit.TransitionType transitionType
| Improve this Doc View Source

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
PlayerEnterExit.TransitionType transitionType
StaticDoor staticDoor
DaggerfallInterior daggerfallInterior
DaggerfallDungeon daggerfallDungeon

Properties

| Improve this Doc View Source

DaggerfallDungeon

The newly instanced dungeon interior. For dungeon interior transitions only.

Declaration
public DaggerfallDungeon DaggerfallDungeon { get; set; }
Property Value
Type Description
DaggerfallDungeon
| Improve this Doc View Source

DaggerfallInterior

The newly instanced building interior. For building interior transitions only.

Declaration
public DaggerfallInterior DaggerfallInterior { get; set; }
Property Value
Type Description
DaggerfallInterior
| Improve this Doc View Source

StaticDoor

The exterior StaticDoor clicked to initiate transition. For exterior to interior transitions only.

Declaration
public StaticDoor StaticDoor { get; set; }
Property Value
Type Description
StaticDoor
| Improve this Doc View Source

TransitionType

The type of transition.

Declaration
public PlayerEnterExit.TransitionType TransitionType { get; set; }
Property Value
Type Description
PlayerEnterExit.TransitionType
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • TransitionEventArgs()
    • TransitionEventArgs(PlayerEnterExit.TransitionType)
    • TransitionEventArgs(PlayerEnterExit.TransitionType, StaticDoor, DaggerfallInterior, DaggerfallDungeon)
  • Properties
    • DaggerfallDungeon
    • DaggerfallInterior
    • StaticDoor
    • TransitionType
Back to top Generated by DocFX