Use the Unicode multiplication symbol for the viewport size display
This commit is contained in:
parent
c47b6f4b5c
commit
c72efd20b8
1 changed files with 3 additions and 3 deletions
|
@ -2511,15 +2511,15 @@ void Node3DEditorViewport::_notification(int p_what) {
|
|||
}
|
||||
|
||||
if (show_info) {
|
||||
const String viewport_size = vformat(String::utf8("%d × %d"), viewport->get_size().x, viewport->get_size().y);
|
||||
String text;
|
||||
text += vformat(TTR("X: %s\n"), rtos(current_camera->get_position().x).pad_decimals(1));
|
||||
text += vformat(TTR("Y: %s\n"), rtos(current_camera->get_position().y).pad_decimals(1));
|
||||
text += vformat(TTR("Z: %s\n"), rtos(current_camera->get_position().z).pad_decimals(1));
|
||||
text += "\n";
|
||||
text += vformat(
|
||||
TTR("Size: %dx%d (%.1fMP)\n"),
|
||||
viewport->get_size().x,
|
||||
viewport->get_size().y,
|
||||
TTR("Size: %s (%.1fMP)\n"),
|
||||
viewport_size,
|
||||
viewport->get_size().x * viewport->get_size().y * 0.000001);
|
||||
|
||||
text += "\n";
|
||||
|
|
Loading…
Reference in a new issue