EntityAccess
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.entity.EntityAccess;
Members
Getter
blockPosiion() as BlockPos
Getter
boundingBox() as AABB
Getter
Gets the ID of the entity.script.zs
// EntityAccess.id as intmyEntityAccess.id
Return Type:
int
id() as int
Gets the ID of the entity.script.zs
Returns: The ID of the entity.
// EntityAccess.id() as int;myEntityAccess.id();
Return Type:
int
Getter
Checks if the entity is always ticking.script.zs
// EntityAccess.isAlwaysTicking as boolmyEntityAccess.isAlwaysTicking
Return Type:
bool
isAlwaysTicking() as bool
Checks if the entity is always ticking.script.zs
Returns: true if the entity is always ticking.
// EntityAccess.isAlwaysTicking() as bool;myEntityAccess.isAlwaysTicking();
Return Type:
bool
setRemoved(var1 as RemovalReason)
Removes this entity with the given removal reason.script.zs
myEntityAccess.setRemoved(myRemovalReason);
Parameters:
Getter
Checks if the entity should be saved.script.zs
// EntityAccess.shouldBeSaved as boolmyEntityAccess.shouldBeSaved
Return Type:
bool
shouldBeSaved() as bool
Checks if the entity should be saved.script.zs
Returns: true if the entity should be saved.
// EntityAccess.shouldBeSaved() as bool;myEntityAccess.shouldBeSaved();
Return Type:
bool
Getter
Gets the UUID of the entity.script.zs
// EntityAccess.uuid as UUIDmyEntityAccess.uuid
Return Type:
UUID
uuid() as UUID
Gets the UUID of the entity.script.zs
Returns: The UUID of the entity.
// EntityAccess.uuid() as UUID;myEntityAccess.uuid();
Return Type:
UUID