EntityTeleportEvent
Link to entityteleportevent
The event is not cancelable.
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 Copyimport crafttweaker.neoforge.api.event.entity.teleport.EntityTeleportEvent;
Extending EntityEvent
Link to extending-entityevent
EntityTeleportEvent extends EntityEvent. That means all methods available in EntityEvent are also available in EntityTeleportEvent
Implemented Interfaces
Link to implemented-interfaces
EntityTeleportEvent implements the following interfaces. That means all methods defined in these interfaces are also available in EntityTeleportEvent
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name prev | Type Vec3 | Has Getter true | Has Setter false |
Name prevX | Type double | Has Getter true | Has Setter false |
Name prevY | Type double | Has Getter true | Has Setter false |
Name prevZ | Type double | Has Getter true | Has Setter false |
Name target | Type Vec3 | Has Getter true | Has Setter false |
Name targetX | Type double | Has Getter true | Has Setter true |
Name targetY | Type double | Has Getter true | Has Setter true |
Name targetZ | Type double | Has Getter true | Has Setter true |