@@ -59,6 +59,7 @@ public final class ParticleOptions {
59
59
* <li>{@link ParticleTypes#BLOCK_MARKER}</li>
60
60
* <li>{@link ParticleTypes#DUST_PILLAR}</li>
61
61
* <li>{@link ParticleTypes#FALLING_DUST}</li>
62
+ * <li>{@link ParticleTypes#BLOCK_CRUMBLE}</li>
62
63
* </ul>
63
64
*/
64
65
public static final DefaultedRegistryReference <ParticleOption <BlockState >> BLOCK_STATE = ParticleOptions .key (ResourceKey .sponge ("block_state" ));
@@ -71,6 +72,7 @@ public final class ParticleOptions {
71
72
* <li>{@link ParticleTypes#ENTITY_EFFECT}</li>
72
73
* <li>{@link ParticleTypes#DUST}</li>
73
74
* <li>{@link ParticleTypes#DUST_COLOR_TRANSITION}</li>
75
+ * <li>{@link ParticleTypes#TRAIL}</li>
74
76
* </ul>
75
77
*/
76
78
public static final DefaultedRegistryReference <ParticleOption <Color >> COLOR = ParticleOptions .key (ResourceKey .sponge ("color" ));
@@ -158,6 +160,16 @@ public final class ParticleOptions {
158
160
*/
159
161
public static final DefaultedRegistryReference <ParticleOption <Double >> SCALE = ParticleOptions .key (ResourceKey .sponge ("scale" ));
160
162
163
+ /**
164
+ * This option will affect the target of a particle
165
+ * The only vanilla {@link ParticleType} this option is applicable to is:
166
+ *
167
+ * <ul>
168
+ * <li>{@link ParticleTypes#TRAIL}</li>
169
+ * </ul>
170
+ */
171
+ public static final DefaultedRegistryReference <ParticleOption <Vector3d >> TARGET = ParticleOptions .key (ResourceKey .sponge ("target" ));
172
+
161
173
/**
162
174
* This option will change the color the transition particle will change to.
163
175
* The only vanilla {@link ParticleType} this option is applicable to is:
@@ -174,6 +186,7 @@ public final class ParticleOptions {
174
186
*
175
187
* <ul>
176
188
* <li>{@link ParticleTypes#VIBRATION}</li>
189
+ * <li>{@link ParticleTypes#TRAIL}</li>
177
190
* </ul>
178
191
*/
179
192
public static final DefaultedRegistryReference <ParticleOption <Ticks >> TRAVEL_TIME = ParticleOptions .key (ResourceKey .sponge ("travel_time" ));
0 commit comments