summaryrefslogtreecommitdiffstats
path: root/src/runtimerender/graphobjects/Qt3DSRenderDynamicObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtimerender/graphobjects/Qt3DSRenderDynamicObject.cpp')
-rw-r--r--src/runtimerender/graphobjects/Qt3DSRenderDynamicObject.cpp25
1 files changed, 19 insertions, 6 deletions
diff --git a/src/runtimerender/graphobjects/Qt3DSRenderDynamicObject.cpp b/src/runtimerender/graphobjects/Qt3DSRenderDynamicObject.cpp
index 1dd352c..0292428 100644
--- a/src/runtimerender/graphobjects/Qt3DSRenderDynamicObject.cpp
+++ b/src/runtimerender/graphobjects/Qt3DSRenderDynamicObject.cpp
@@ -125,12 +125,25 @@ void SDynamicObject::SetStrPropertyValueT(dynamic::SPropertyDefinition &inDefini
if (inProjectDir == NULL)
inProjectDir = "";
if (CFileTools::RequiresCombineBaseAndRelative(inValue)) {
- QString path = QDir(inProjectDir).cleanPath(inValue);
- ioWorkspace.assign(path.toLatin1().constData());
- SetPropertyValueT(inDefinition, inStrTable.RegisterStr(ioWorkspace.c_str()));
- // We also adjust the image path in the definition
- // I could not find a better place
- inDefinition.m_ImagePath = inStrTable.RegisterStr(ioWorkspace.c_str());
+ QString value(QDir::cleanPath(inValue));
+ QDir projectDir(inProjectDir);
+ QString path = projectDir.path() + QChar('/') + value;
+ if (QFileInfo(path).exists()) {
+ ioWorkspace.assign(path.toLatin1().constData());
+ SetPropertyValueT(inDefinition, inStrTable.RegisterStr(ioWorkspace.c_str()));
+ // We also adjust the image path in the definition
+ // I could not find a better place
+ inDefinition.m_ImagePath = inStrTable.RegisterStr(ioWorkspace.c_str());
+ } else if (value.startsWith("../")) {
+ path = projectDir.path() + QChar('/') + value.right(value.size() - 3);
+ if (QFileInfo(path).exists()) {
+ ioWorkspace.assign(path.toLatin1().constData());
+ SetPropertyValueT(inDefinition, inStrTable.RegisterStr(ioWorkspace.c_str()));
+ // We also adjust the image path in the definition
+ // I could not find a better place
+ inDefinition.m_ImagePath = inStrTable.RegisterStr(ioWorkspace.c_str());
+ }
+ }
} else {
SetPropertyValueT(inDefinition, inStrTable.RegisterStr(inValue));
// If the image path is not adjusted here, an invalid textures flashes for one frame