Mesh: avoid NPE in getMorphTargets() when there are no targets (#1231)

This commit is contained in:
Stephen Gold 2019-12-09 07:39:30 -08:00 committed by GitHub
parent 98f6d326e1
commit 8d9d091576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1527,7 +1527,11 @@ public class Mesh implements Savable, Cloneable, JmeCloneable {
}
public MorphTarget[] getMorphTargets() {
return morphTargets.getArray();
if (morphTargets == null) {
return new MorphTarget[0];
} else {
return morphTargets.getArray();
}
}
/**