ElTotisPro50 Posted January 27, 2022 Share Posted January 27, 2022 so in minecraft i can summon particles with commands from the player eyes, and the particle spawn like a laser( https://imgur.com/a/kZjxeK2 ), how can i do that with the world.addParticle Quote Link to comment Share on other sites More sharing options...
Majd123mc Posted March 6, 2022 Share Posted March 6, 2022 You're going to need to spawn multiple particles. You can use a for-loop for that. Pseudo code: for (int i = 0; i < detail /* how much to spawn */; i++) { world.addParticle(/* Particle info goes here ... */, /* X: */ (destX / detail) * i); } (That won't actually work you will need to make your own adjustments Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.