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(catType as ResourceLocation) as EntityPredicateBuilder
ParameterTypeDescription
Parameter
catType
Type
ResourceLocation
Description
No Description Provided

Return Type: EntityPredicateBuilder

script.zs
EntityPredicate.create(catType as string) as EntityPredicateBuilder
ParameterTypeDescription
Parameter
catType
Type
string
Description
No Description Provided

Return Type: EntityPredicateBuilder

script.zs
EntityPredicate.create(entityTag as MCTag<EntityType>) as EntityPredicateBuilder
ParameterTypeDescription
Parameter
entityTag
Type
MCTag<EntityType>
Description
No Description Provided

Return Type: EntityPredicateBuilder

script.zs
EntityPredicate.create(entityType as EntityType) as EntityPredicateBuilder
ParameterTypeDescription
Parameter
entityType
Type
EntityType
Description
No Description Provided