DoubleMinMaxBoundsPredicate

Link to doubleminmaxboundspredicate

Importare la Classe

Link to importare-la-classe

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

Name: any

Return Type: DoubleMinMaxBoundsPredicate

ZenScript
Copy
// DoubleMinMaxBoundsPredicate.any() as DoubleMinMaxBoundsPredicate

DoubleMinMaxBoundsPredicate.any();

Name: atLeast

Return Type: DoubleMinMaxBoundsPredicate

ZenScript
Copy
DoubleMinMaxBoundsPredicate.atLeast(min as double) as DoubleMinMaxBoundsPredicate
ParametroTipoDescrizione
Parametro
min
Tipo
double
Descrizione
No Description Provided

Name: atMost

Return Type: DoubleMinMaxBoundsPredicate

ZenScript
Copy
DoubleMinMaxBoundsPredicate.atMost(max as double) as DoubleMinMaxBoundsPredicate
ParametroTipoDescrizione
Parametro
max
Tipo
double
Descrizione
No Description Provided

Name: between

Return Type: DoubleMinMaxBoundsPredicate

ZenScript
Copy
DoubleMinMaxBoundsPredicate.between(min as double, max as double) as DoubleMinMaxBoundsPredicate
ParametroTipoDescrizione
Parametro
min
Tipo
double
Descrizione
No Description Provided
Parametro
max
Tipo
double
Descrizione
No Description Provided

Name: exactly

Return Type: DoubleMinMaxBoundsPredicate

ZenScript
Copy
DoubleMinMaxBoundsPredicate.exactly(value as double) as DoubleMinMaxBoundsPredicate
ParametroTipoDescrizione
Parametro
valore
Tipo
double
Descrizione
No Description Provided