Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. private setCloth(ClothPath defaultClothPath, ClothPath doubleClothPath) {
  2.        if (clothState == ClothState.DEFAULT) {
  3.                     this.setCloth(zombieAnimations.getClothAnimation(defaultClothPath));
  4.        } else if (clothState == ClothState.DOUBLE) {
  5.                     this.setCloth(zombieAnimations.getClothAnimation(doubleClothPath));
  6.        }
  7. }
  8.  
  9. setCloth(ClothPath.STAND, ClothPath.DOUBLE_STAND);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement