We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d335725 commit 122b98bCopy full SHA for 122b98b
src/main/java/engine/debug/DebugInfoUpdater.java
@@ -104,6 +104,9 @@ private void updateCameraInfo(Camera camera) {
104
setInfo(CATEGORY_CAMERA, "FOV", Mathf.toDegrees(camera.getFieldOfView()));
105
setInfo(CATEGORY_CAMERA, "Near", camera.getNearPlane());
106
setInfo(CATEGORY_CAMERA, "Far", camera.getFarPlane());
107
+ setInfo(CATEGORY_CAMERA, "PositionX", camera.getTransform().getPosition().getX());
108
+ setInfo(CATEGORY_CAMERA, "PositionY", camera.getTransform().getPosition().getY());
109
+ setInfo(CATEGORY_CAMERA, "PositionZ", camera.getTransform().getPosition().getZ());
110
}
111
112
private void updateOsMetrics() {
0 commit comments