Move Rotation and Scale factories from base module to OpenSpace core

This commit is contained in:
Emil Axelsson
2016-12-14 14:27:12 +01:00
parent 9b5e6f0000
commit 4b688fd149
2 changed files with 9 additions and 9 deletions
+9
View File
@@ -170,6 +170,15 @@ OpenSpaceEngine::OpenSpaceEngine(std::string programName,
std::make_unique<ghoul::TemplateFactory<Translation>>(),
"Translation"
);
FactoryManager::ref().addFactory(
std::make_unique<ghoul::TemplateFactory<Rotation>>(),
"Rotation"
);
FactoryManager::ref().addFactory(
std::make_unique<ghoul::TemplateFactory<Scale>>(),
"Scale"
);
SpiceManager::initialize();
Time::initialize();
TransformationManager::initialize();