Mesh: avoid NPE in getMorphTargets() when there are no targets (#1231)
This commit is contained in:
parent
8905b3d8f8
commit
f9d2e03362
@ -1527,7 +1527,11 @@ public class Mesh implements Savable, Cloneable, JmeCloneable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public MorphTarget[] getMorphTargets() {
|
public MorphTarget[] getMorphTargets() {
|
||||||
return morphTargets.getArray();
|
if (morphTargets == null) {
|
||||||
|
return new MorphTarget[0];
|
||||||
|
} else {
|
||||||
|
return morphTargets.getArray();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user