When importing a rkt file, if we cannot find the decal image file on the
local disk, we just ignore it.
This commit is contained in:
parent
e0f0befa86
commit
28d970cad6
@ -69,13 +69,14 @@ public class RockSimAppearanceBuilder extends AppearanceBuilder {
|
|||||||
if ("file".equals(name)) {
|
if ("file".equals(name)) {
|
||||||
if (value.length() > 0) {
|
if (value.length() > 0) {
|
||||||
final File f = new File(value);
|
final File f = new File(value);
|
||||||
if (!f.exists()) {
|
if (f.exists()) {
|
||||||
//Find out how to get path of current rocksim file
|
|
||||||
//so I can look in it's directory
|
|
||||||
}
|
|
||||||
Attachment a = context.getAttachmentFactory().getAttachment(name);
|
Attachment a = context.getAttachmentFactory().getAttachment(name);
|
||||||
setImage(context.getOpenRocketDocument().getDecalImage(a));
|
setImage(context.getOpenRocketDocument().getDecalImage(a));
|
||||||
}
|
}
|
||||||
|
// else {
|
||||||
|
// If we can't find the file on the filesystem, we just ignore the decal.
|
||||||
|
//}
|
||||||
|
}
|
||||||
} else if ("repeat".equals(name)) {
|
} else if ("repeat".equals(name)) {
|
||||||
repeat = "1".equals(value);
|
repeat = "1".equals(value);
|
||||||
} else if ("interpolate".equals(name)) {
|
} else if ("interpolate".equals(name)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user