Posted May 17, 20214 yr Hey! I want to create a custom particle but I don't know where to start? Is it possible to send me an example/tip or tutorial that is not outdated? Thank you!
May 18, 20214 yr The docs are updated for this. There is only one major inaccuracy that you may or may not encounter.
May 18, 20214 yr Author I had already seen the documentation but it had not helped me. Nothing is explained about how to change the color/texture or how to spawn the particle. Do you have an idea?
May 18, 20214 yr Particles have color fields that are used to set their color. As for spawning (client side only), Minecraft.getInstance().particles.addEffect(particle); (Note, I last messed with this in 1.14, and while I don't think it has changed much, the update to use Mojang's mappings may have changed the names). Edited May 18, 20214 yr by Draco18s Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
May 18, 20214 yr 7 hours ago, ZeyX said: I had already seen the documentation but it had not helped me. Nothing is explained about how to change the color/texture or how to spawn the particle. Do you have an idea? The color needs to be specified using IParticleData since that would be dynamic data which you can look at the example in RedstoneParticleData. Textures are usually any subclass of SpriteTextureParticle. The spawning of the particle is definitely covered on the documentation. Show what you currently have. You're asking for specific behavior instead of something more generalized.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.