Represents a value that can assume three values, instead of a simple boolean that can only assume two values.

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

TriState is an enum. It has 3 enum constants. They are accessible using the code below.

ZenScript
Copy

// The true value of the TriState.
// 
// It can be considered the same as a boolean's 'true' value.
TriState.TRUE

// The false value of the TriState.
// 
// It can be considered the same as a boolean's 'false' value.
TriState.FALSE

// The unset value of the TriState.
// 
// It represents the lack of a state or a decision that hasn't been made yet.
TriState.UNSET