public enum VisualEffectType extends Enum<VisualEffectType>
Enum Constant and Description |
---|
BLOCK_BREAK
Block Break Particles
|
EYE_BREAK
Eye Of Ender Break Animation
|
FIRE_SMOKE
Spawns 10 smoke particles
|
HAPPY_VILLAGER
Happy Villager Effect (Green Crosses)
|
MOB_SPAWN
Mob Spawn Particle Effect (Smoke + Flames)
|
SPLASH_POTION
Splash Potion Particles
|
Modifier and Type | Method and Description |
---|---|
int |
id()
Get the id value of the effect
|
static VisualEffectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisualEffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisualEffectType FIRE_SMOKE
public static final VisualEffectType BLOCK_BREAK
public static final VisualEffectType SPLASH_POTION
public static final VisualEffectType EYE_BREAK
public static final VisualEffectType MOB_SPAWN
public static final VisualEffectType HAPPY_VILLAGER
public static VisualEffectType[] values()
for (VisualEffectType c : VisualEffectType.values()) System.out.println(c);
public static VisualEffectType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int id()
Copyright © 2016. All rights reserved.