Colored particle

Is there way to set reddust particle color using api?

ParticleEffect effect = ParticleEffect.builder()
        .type(ParticleTypes.REDSTONE_DUST)
        .option(ParticleOptions.COLOR, Colors.GREEN)
        .build();
1 Like