Skip to content

Commit a750f1c

Browse files
committed
made it easier to turn off priority checking
1 parent 2f1dae8 commit a750f1c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

jme3-core/src/main/java/com/jme3/anim/AlertArmatureMask.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,11 @@ public AlertArmatureMask addJoints(String... joints) {
9191
* <p>Not checking is more efficient, but checking can avoid some
9292
* interpolation issues between layers. Default=true
9393
* @param check
94+
* @return
9495
*/
95-
public void setCheckUpperLayers(boolean check) {
96+
public AlertArmatureMask setCheckUpperLayers(boolean check) {
9697
checkUpperLayers = check;
98+
return this;
9799
}
98100

99101
/**

0 commit comments

Comments
 (0)