Package apple.scenekit.enums
Class SCNParticleSortingMode
- java.lang.Object
-
- apple.scenekit.enums.SCNParticleSortingMode
-
public final class SCNParticleSortingMode extends java.lang.ObjectParticle Sorting Mode
-
-
Field Summary
Fields Modifier and Type Field Description static longDistanceparticles are sorted by distance from the point of viewstatic longNoneparticles are not sortedstatic longOldestFirstparticles are sorted by birth date - oldest firststatic longProjectedDepthparticles are sorted by depth (far rendered first)static longYoungestFirstparticles are sorted by birth date - yougest first
-
-
-
Field Detail
-
None
public static final long None
particles are not sorted- See Also:
- Constant Field Values
-
ProjectedDepth
public static final long ProjectedDepth
particles are sorted by depth (far rendered first)- See Also:
- Constant Field Values
-
Distance
public static final long Distance
particles are sorted by distance from the point of view- See Also:
- Constant Field Values
-
OldestFirst
public static final long OldestFirst
particles are sorted by birth date - oldest first- See Also:
- Constant Field Values
-
YoungestFirst
public static final long YoungestFirst
particles are sorted by birth date - yougest first- See Also:
- Constant Field Values
-
-