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.

Importing the class

Link to importing-the-class

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
Copy
import 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

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();

Link to getOriginStrength

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
Copy
LivingKnockBackEvent.setRatioX(value as double) as void
ParameterTypeDescription
Parameter
value
Type
double
Description
No Description Provided

Name: setRatioZ

Return Type: void

ZenScript
Copy
LivingKnockBackEvent.setRatioZ(value as double) as void
ParameterTypeDescription
Parameter
value
Type
double
Description
No Description Provided

Name: setStrength

Return Type: void

ZenScript
Copy
LivingKnockBackEvent.setStrength(value as float) as void
ParameterTypeDescription
Parameter
value
Type
float
Description
No Description Provided
이름TypeHas GetterHas SetterDescription
이름
originRatioX
Type
double
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
originRatioZ
Type
double
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
originStrength
Type
float
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
ratioX
Type
double
Has Getter
true
Has Setter
true
Description
No Description Provided
이름
ratioZ
Type
double
Has Getter
true
Has Setter
true
Description
No Description Provided
이름
strength
Type
float
Has Getter
true
Has Setter
true
Description
No Description Provided