SkeletonControl: fix syntax error
Conflicts: jme3-core/src/main/java/com/jme3/animation/SkeletonControl.java
This commit is contained in:
parent
c6c6b48bda
commit
c03e831f3c
@ -111,7 +111,7 @@ public class SkeletonControl extends AbstractControl implements Cloneable, JmeCl
|
|||||||
* Material references used for hardware skinning
|
* Material references used for hardware skinning
|
||||||
*/
|
*/
|
||||||
private Set<Material> materials = new HashSet<Material>();
|
private Set<Material> materials = new HashSet<Material>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Serialization only. Do not use.
|
* Serialization only. Do not use.
|
||||||
*/
|
*/
|
||||||
@ -204,6 +204,9 @@ public class SkeletonControl extends AbstractControl implements Cloneable, JmeCl
|
|||||||
* @param skeleton the skeleton
|
* @param skeleton the skeleton
|
||||||
*/
|
*/
|
||||||
public SkeletonControl(Skeleton skeleton) {
|
public SkeletonControl(Skeleton skeleton) {
|
||||||
|
if (skeleton == null) {
|
||||||
|
throw new IllegalArgumentException("skeleton cannot be null");
|
||||||
|
}
|
||||||
this.skeleton = skeleton;
|
this.skeleton = skeleton;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user