GetDoorTeleportX/Y/Z/Rot

From the Fallout3 GECK Wiki
(Redirected from GetDoorTeleportX)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

These 4 similar functions return the X/Y/Z coordinate or rotation to which the calling load door reference teleports. Added by NVSE 4.6.3.

Syntax

[help]
(X/Y/Z/Rot:float) LoadDoorRef.GetDoorTeleportX/Y/Z/Rot

Example

float fX
float fY
float fZ
float fRot

let fX   := SomeDoorRef.GetDoorTeleportX
let fY   := SomeDoorRef.GetDoorTeleportY
let fZ   := SomeDoorRef.GetDoorTeleportZ
let fRot := SomeDoorRef.GetDoorTeleportRot

See Also