mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 20:24:16 +01:00
fix: swap X and Z axis for SharpDX vectors
This commit is contained in:
parent
84d1494b63
commit
8a1c923b36
1 changed files with 1 additions and 1 deletions
|
|
@ -17,6 +17,6 @@ namespace Dalamud.Game.ClientState.Actors {
|
||||||
/// Convert this Position3 to a SharpDX.Vector3
|
/// Convert this Position3 to a SharpDX.Vector3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="pos">Position to convert.</param>
|
/// <param name="pos">Position to convert.</param>
|
||||||
public static implicit operator SharpDX.Vector3(Position3 pos) => new SharpDX.Vector3(pos.X, pos.Y, pos.Z);
|
public static implicit operator SharpDX.Vector3(Position3 pos) => new SharpDX.Vector3(pos.X, pos.Z, pos.Y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue