LocationPredicate

Link to locationpredicate

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
Copy
import crafttweaker.api.predicate.LocationPredicate;

Name: any

Return Type: LocationPredicate

ZenScript
Copy
// LocationPredicate.any() as LocationPredicate

LocationPredicate.any();

Name: at

Return Type: LocationPredicate

ZenScript
Copy
LocationPredicate.at(x as DoubleMinMaxBoundsPredicate, y as DoubleMinMaxBoundsPredicate, z as DoubleMinMaxBoundsPredicate) as LocationPredicate
参数类型
参数
x
类型
DoubleMinMaxBoundsPredicate
参数
y
类型
DoubleMinMaxBoundsPredicate
参数
z
类型
DoubleMinMaxBoundsPredicate

Name: create

Return Type: LocationPredicateBuilder

ZenScript
Copy
// LocationPredicate.create() as LocationPredicateBuilder

LocationPredicate.create();

Name: inBiome

Return Type: LocationPredicate

ZenScript
Copy
LocationPredicate.inBiome(biome as ResourceLocation) as LocationPredicate
参数类型
参数
biome
类型
资源位置

Name: inBiome

Return Type: LocationPredicate

ZenScript
Copy
LocationPredicate.inBiome(biome as string) as LocationPredicate
参数类型
参数
biome
类型
string

Name: inDimension

Return Type: LocationPredicate

ZenScript
Copy
LocationPredicate.inDimension(dimension as ResourceLocation) as LocationPredicate
参数类型
参数
dimension
类型
资源位置

Name: inDimension

Return Type: LocationPredicate

ZenScript
Copy
LocationPredicate.inDimension(dimension as string) as LocationPredicate
参数类型
参数
dimension
类型
string

Name: inStructure

Return Type: LocationPredicate

ZenScript
Copy
LocationPredicate.inStructure(structure as ResourceLocation) as LocationPredicate
参数类型
参数
structure
类型
资源位置

Name: inStructure

Return Type: LocationPredicate

ZenScript
Copy
LocationPredicate.inStructure(structure as string) as LocationPredicate
参数类型
参数
structure
类型
string