public static enum ParticleMesh.Type extends java.lang.Enum<ParticleMesh.Type>
Enum Constant and Description |
---|
Point
The particle mesh is composed of points.
|
Triangle
The particle mesh is composed of triangles.
|
Modifier and Type | Method and Description |
---|---|
static ParticleMesh.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParticleMesh.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParticleMesh.Type Point
rotation
, and
velocity following
.public static final ParticleMesh.Type Triangle
public static ParticleMesh.Type[] values()
for (ParticleMesh.Type c : ParticleMesh.Type.values()) System.out.println(c);
public static ParticleMesh.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null