EntityTypePredicate

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.EntityTypePredicate;

Static Methods

Return Type: EntityTypePredicate

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

Return Type: EntityTypePredicate

script.zs
EntityTypePredicate.create(type as EntityType) as EntityTypePredicate
ParameterTypeDescription
Parameter
type
Type
EntityType
Description
No Description Provided

Return Type: EntityTypePredicate

script.zs
EntityTypePredicate.create(type as MCTag<EntityType>) as EntityTypePredicate
ParameterTypeDescription
Parameter
type
Type
MCTag<EntityType>
Description
No Description Provided