delete unused assets and change the font from arial to roboto which is free

This commit is contained in:
2018-09-21 14:02:05 +02:00
parent edff262baf
commit e42d3c698c
45 changed files with 204 additions and 49 deletions

View File

@@ -97,8 +97,8 @@ void App::initAssets()
LOG("initializing assets");
FontManager::init();
LOG("initializing assets loading fonts");
FontManager::load(kFont::Arial_11, "data/arial.ttf", 15);
FontManager::load(kFont::Arial_30, "data/arial.ttf", 30);
FontManager::load(kFont::Arial_11, "data/fonts/Roboto-Regular.ttf", 17);
FontManager::load(kFont::Arial_30, "data/fonts/Roboto-Regular.ttf", 30);
LOG("initializing assets create sampler");
sampler.create(GL_NEAREST);