Open main menu

UESPWiki β

Daggerfall Mod:DFRemake/Coordinate System

< Mod / Daggerfall: Daggerfall Mod: DFRemake(Redirected from Daggerfall:DFRemake/Coordinate System)

Daggerfall Coordinates ==

  • +X is 'East' (towards the right on the overhead map)
  • +Z is 'North' (towards the top of the overhead map)
  • -Y is up
  • Overall system is right-handed


DarkBasic CoordinatesEdit

  • Overall system is left-handed


Game CoordinatesEdit

Since we must use the left-handed system in DarkBasic, we must convert the DF coordinates slightly:

  • DB.X = DF.X (Same, +X is East)
  • DB.Y = DF.Z (+Y is North)
  • DB.Z = -DF.Y (Same, +Z is Up)