blob: 8575e1c30a5e25dd417ca1015224d0450a3e91ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "editor_scale.h"
#include "os/os.h"
static float scale = 1.0;
void editor_set_scale(float p_scale) {
scale=p_scale;
}
float editor_get_scale() {
return scale;
}
|