We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e61c0d commit 707edfaCopy full SHA for 707edfa
Components/EditorComponent.cs
@@ -101,6 +101,7 @@ public void OnGUI()
101
//guiText += $"Distance To Nearest Waypoint: {distanceToZone}\n";
102
guiText += $"{(navMeshHit.hit ? "Inside" : "Outside")} of Navmesh\n";
103
guiText += $"Loc: {player.Position.x}, {player.Position.y}, {player.Position.z}\n";
104
+ guiText += $"Rot: {player.Rotation}";
105
106
// Draw the GUI
107
guiContent.text = guiText;
0 commit comments