Implemented HandleThrow in match and added some fonction in Character
and ThrowPart
This commit is contained in:
@ -87,4 +87,12 @@ public class ThrowPart {
|
||||
public void setisActive(boolean isActive) {
|
||||
this.isActive = isActive;
|
||||
}
|
||||
|
||||
public void clone(ThrowPart tP) {
|
||||
this.hasHit = tP.hasHit();
|
||||
this.hitstun = tP.getHitstun();
|
||||
this.frames = tP.getFrames();
|
||||
this.knockbackOnHit = tP.getKnockbackOnHit();
|
||||
this.damage = tP.getDamage();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user