TickEventType

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

Implements

Undocumented Interfaces

Comparable<Enum>

Enum Constants

TickEventType is an enum with 5 constants. They are accessible like so:

script.zs
// TickEventType.CLIENT
<constant:forge:event/tick/type:client>
// TickEventType.LEVEL
<constant:forge:event/tick/type:level>
// TickEventType.PLAYER
<constant:forge:event/tick/type:player>
// TickEventType.RENDER
<constant:forge:event/tick/type:render>
// TickEventType.SERVER
<constant:forge:event/tick/type:server>