You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-19 14:31:59 +00:00
8 lines
128 B
C++
8 lines
128 B
C++
#include "editor_scale.h"
|
|
#include "os/os.h"
|
|
|
|
bool editor_is_hidpi() {
|
|
|
|
return OS::get_singleton()->get_screen_dpi(0) > 150;
|
|
}
|