mirror of
https://github.com/overte-org/overte.git
synced 2025-07-28 05:10:23 +02:00
fixed errors with Jenkins build
This commit is contained in:
parent
2fa7c0a07d
commit
735e641548
1 changed files with 2 additions and 2 deletions
|
@ -332,8 +332,8 @@ void OBJBaker::createFBXNodeTree(FBXNode& rootNode, FBXGeometry& geometry) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Connect textures to materials
|
// Connect textures to materials
|
||||||
int mapSize = _mapTextureMaterial.size();
|
auto mapSize = _mapTextureMaterial.size();
|
||||||
for (int i = 0;i < mapSize;i++) {
|
for (size_t i = 0;i < mapSize;i++) {
|
||||||
FBXNode cNode2;
|
FBXNode cNode2;
|
||||||
cNode2.name = C_NODE_NAME;
|
cNode2.name = C_NODE_NAME;
|
||||||
propertyString = CONNECTIONS_NODE_PROPERTY_1;
|
propertyString = CONNECTIONS_NODE_PROPERTY_1;
|
||||||
|
|
Loading…
Reference in a new issue