EntityPredicate

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.

script.zs
import crafttweaker.api.predicate.EntityPredicate;

Static Methods

Return Type: EntityPredicate

script.zs
// EntityPredicate.any() as EntityPredicate
EntityPredicate.any();

Return Type: EntityPredicateBuilder

script.zs
// EntityPredicate.create() as EntityPredicateBuilder
EntityPredicate.create();

Return Type: EntityPredicateBuilder

script.zs
EntityPredicate.create(entityTag as KnownTag<EntityType>) as EntityPredicateBuilder
ParameterType
Parameter
entityTag
Type
KnownTag<EntityType>

Return Type: EntityPredicateBuilder

script.zs
EntityPredicate.create(entityType as EntityType) as EntityPredicateBuilder
ParameterType
Parameter
entityType
Type
EntityType