Add the ability to specify RenderEngine font sizes in the configuration file (closes #1653)

This commit is contained in:
Alexander Bock
2021-06-17 15:39:16 +02:00
parent 89fa6de0b9
commit b1f10b1b70
5 changed files with 90 additions and 51 deletions

View File

@@ -53,6 +53,15 @@ struct Configuration {
};
std::map<std::string, std::string> fonts;
struct FontSizes {
float frameInfo;
float shutdown;
float log;
float cameraInfo;
float versionInfo;
};
FontSizes fontSize;
struct Logging {
std::string level = "Info";
bool forceImmediateFlush = false;