Class ParticleNativeAPI

java.lang.Object
com.github.fierioziy.particlenativeapi.api.ParticleNativeAPI

public abstract class ParticleNativeAPI extends Object

Instance holding particle lists.

  • Field Details

    • LIST_1_8

      public final ParticleList_1_8 LIST_1_8

      Instance of class holding particle types prior to 1.13.

      All particle lists attempt to provide same particle types between renames or merges. They also attempt to provide cross-version compatibility (for ex. usage of ENCHANTED_HIT effect name from ParticleList_1_13 should work on MC 1.8), however this is not always possible.

      Use isPresent method on particle type to handle such cases.

      Before accessing any particle type, you should check if it exists on server by an isPresent defined by all particle types in this class.

    • LIST_1_13

      public final ParticleList_1_13 LIST_1_13

      Instance of class holding particle types since 1.13.

      All particle lists attempt to provide same particle types between renames or merges. They also attempt to provide cross-version compatibility (for ex. usage of ENCHANTED_HIT effect name from ParticleList_1_13 should work on MC 1.8), however this is not always possible.

      Use isPresent method on particle type to handle such cases.

      Before accessing any particle type, you should check if it exists on server by an isPresent defined by all particle types in this class.

    • LIST_1_19_PART

      public final ParticleList_1_19_Part LIST_1_19_PART

      Instance of class holding particle types that have changed since 1.19.

      All particle lists attempt to provide same particle types between renames or merges. They also attempt to provide cross-version compatibility (for ex. usage of ENCHANTED_HIT effect name from ParticleList_1_13 should work on MC 1.8), however this is not always possible.

      Use isPresent method on particle type to handle such cases.

      Before accessing any particle type, you should check if it exists on server by an isPresent defined by all particle types in this class.

  • Constructor Details