Daggerfall Mod:DFRemake/Coordinate System

The UESPWiki – Your source for The Elder Scrolls since 1995
Jump to: navigation, search

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 Coordinates[edit]

  • Overall system is left-handed


Game Coordinates[edit]

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)