Skip to content

Commit

Permalink
jme3-core: Fix JavaDoc for setMaxTransitionWeight
Browse files Browse the repository at this point in the history
  • Loading branch information
mrxz authored Dec 19, 2022
1 parent 5d1ee26 commit 792eac5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ protected float getTransitionWeight() {
}

/**
* @param maxTransitionWeight The max transition weight. Must be >0 and <1 (default=1)
* @param maxTransitionWeight The max transition weight. Must be >=0 and <=1 (default=1)
*/
public void setMaxTransitionWeight(double maxTransitionWeight) {
assert maxTransitionWeight >= 0 && maxTransitionWeight <= 1;
Expand Down

0 comments on commit 792eac5

Please sign in to comment.