mirror of
https://github.com/godotengine/godot.git
synced 2025-02-17 22:43:01 +08:00
9 lines
174 B
C++
9 lines
174 B
C++
#ifndef EDITOR_SCALE_H
|
|
#define EDITOR_SCALE_H
|
|
|
|
void editor_set_scale(float p_scale);
|
|
float editor_get_scale();
|
|
|
|
#define EDSCALE (editor_get_scale())
|
|
#endif // EDITOR_SCALE_H
|