LivingKnockBackEvent
Link to livingknockbackevent
The event is cancelable.
If the event is canceled, the entity is not knocked back.
The event does not have a result.
Importare la Classe
Link to importare-la-classe
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.event.living.LivingKnockBackEvent;
Extending LivingEvent
Link to extending-livingevent
LivingKnockBackEvent extends LivingEvent. That means all methods available in LivingEvent are also available in LivingKnockBackEvent
Metodi
Link to metodi
Name: getOriginRatioX
Return Type: double
ZenScript Copy// LivingKnockBackEvent.getOriginRatioX() as double
event.getOriginRatioX();
Name: getOriginRatioZ
Return Type: double
ZenScript Copy// LivingKnockBackEvent.getOriginRatioZ() as double
event.getOriginRatioZ();
Name: getOriginStrength
Return Type: float
ZenScript Copy// LivingKnockBackEvent.getOriginStrength() as float
event.getOriginStrength();
Name: getRatioX
Return Type: double
ZenScript Copy// LivingKnockBackEvent.getRatioX() as double
event.getRatioX();
Name: getRatioZ
Return Type: double
ZenScript Copy// LivingKnockBackEvent.getRatioZ() as double
event.getRatioZ();
Name: getStrength
Return Type: float
ZenScript Copy// LivingKnockBackEvent.getStrength() as float
event.getStrength();
Name: setRatioX
Return Type: void
ZenScript CopyLivingKnockBackEvent.setRatioX(value as double) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo double | Descrizione No Description Provided |
Name: setRatioZ
Return Type: void
ZenScript CopyLivingKnockBackEvent.setRatioZ(value as double) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo double | Descrizione No Description Provided |
Name: setStrength
Return Type: void
ZenScript CopyLivingKnockBackEvent.setStrength(value as float) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo float | Descrizione No Description Provided |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome originRatioX | Tipo double | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome originRatioZ | Tipo double | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome originStrength | Tipo float | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome ratioX | Tipo double | Ha Getter sì | Ha Setter sì | Descrizione No Description Provided |
Nome ratioZ | Tipo double | Ha Getter sì | Ha Setter sì | Descrizione No Description Provided |
Nome strength | Tipo float | Ha Getter sì | Ha Setter sì | Descrizione No Description Provided |