TickEventPhase

Importing the class

If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.

script.zs
import crafttweaker.forge.api.event.tick.TickEventPhase;

Implements

Undocumented Interfaces

Comparable<Enum>

Enum Constants

TickEventPhase is an enum with 2 constants. They are accessible like so:

script.zs
// TickEventPhase.END
<constant:forge:event/tick/phase:end>
// TickEventPhase.START
<constant:forge:event/tick/phase:start>

Members

Getter
script.zs
// Phase.isEnd as bool
<constant:forge:event/tick/phase:end>.isEnd

Return Type: bool

Getter
script.zs
// Phase.isStart as bool
<constant:forge:event/tick/phase:end>.isStart

Return Type: bool