Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Title says it all, I'd like to spawn some vanilla particles (those fire looking ones from spawners) at a certain coordinate.

This is for adding a visual effect around an arrow as it flies, so I was thinking I could spawn particles at the arrow's coordinate position at every tick. 

it looks like the particles for the spawner are created in the net.minecraft.world.spawner.AbstractSpawner class. Check out how they do it there, in the tick() method as far as I can tell.

 

Vanilla classes are a good reference for a ton of things :)

Edited by Ugdhar

  • Author
6 hours ago, Ugdhar said:

it looks like the particles for the spawner are created in the net.minecraft.world.spawner.AbstractSpawner class. Check out how they do it there, in the tick() method as far as I can tell.

 

Vanilla classes are a good reference for a ton of things :)

  

4 minutes ago, poopoodice said:

world.addParticle

 

Hey, this is how I'm trying to do it so far. 

    @Override
    public void tick() {
        super.tick();
        this.world.addParticle(ParticleTypes.FLAME, this.getPosX(), this.getPosY(), this.getPosZ(), 0.0, 0.0, 0.0);
        System.out.println("DEBUG: arrow tick");
    }

My full class for my arrow: https://pastebin.com/41jCRgYu

The particle's aren't showing, but the debug message is printing.

Also, I'm not really sure what the particle speed values mean? On AbstractSpawner they're all set to 0 so that's what I did.

Edited by thomask

This is the way I've been able to do it, I found it somewhere in the vanilla code and it's worked ever since.

 

In the tick() method you could have something like...

 

if (!this.world.isRemote()) {
    //ANY POSITION YOU WANT HERE
    Vec3d pos = this.creature.getPositionVec();
    //SPAWN THE PARTICLE
    ((ServerWorld) this.world).spawnParticle(ParticleTypes.HEART, pos.getX(), pos.getY(), pos.getZ(), 1, 0, 0, 0, (double) 0.01F);
    
}

 

Another example is the Tamable entity, how when you right-click it you get 7 hearts randomly float up

 

for(int i = 0; i < 7; ++i) {
   double d0 = this.rand.nextGaussian() * 0.02D;
   double d1 = this.rand.nextGaussian() * 0.02D;
   double d2 = this.rand.nextGaussian() * 0.02D;
   this.world.addParticle(ParticleTypes.HEART, this.getPosXRandom(1.0D), this.getPosYRandom() + 0.5D, this.getPosZRandom(1.0D), d0, d1, d2);
}

 

You would have to find the particle your looking for in ParticleTypes i guess. And I think your position should be the blocks center position plus a random variation of -0.5 to 0.5 on every axis

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.