I'm trying to compile Ogitor with Ogre 14.3, but there are significant changes between API 13 and 14.
ogitor/Dependencies/OgreTerrainConverter/source/OgreTerrainConverter.cpp
Code: Select all
bool OgreTerrainConverter::readLayerDeclaration(StreamSerialiser& stream, TerrainLayerDeclaration& targetdecl)
{
...
targetdecl.samplers.resize(numSamplers);
...
targetdecl.elements.resize(numElems);
...
}
samplers and elements are no longer members of TerrainLayerDeclaration.
TerrainLayerDeclaration itself is now a list of samplers and I can't seem to find out what happened to the elements.
TerrainLayerSamplerSemantic is missing, too. It is now "do not use".
There are some more errors related to Camera and Light, but I found the required changes in the Deprecated List of the API documentation.
However, I need a hint in the right direction for the Terrain stuff, please.