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

Does anyone know how to create particle effects in a specific location? I tried using World.spawnParticle but I cannot get it to work.

Edit:

Here's my code:

@SubscribeEvent(priority = EventPriority.NORMAL, receiveCanceled = true)
	public void onEvent(PlayerTickEvent event){
		EntityPlayer p = event.player;
		
		if(p.getHeldItemOffhand().getItem() == ModItems.shieldCharm  ){
			List<Entity> L = p.getEntityWorld().getLoadedEntityList();
			for(Entity e : L){
				if(e instanceof EntityArrow){
					EntityArrow e2 = (EntityArrow)e;
					if(e2.getDistance(p) < 3){
						e2.motionX = 0;
						e2.motionY = 0;
						e2.motionZ = 0;
						if(e2.getEntityWorld().isRemote){
							e2.getEntityWorld().spawnParticle(EnumParticleTypes.DRIP_WATER, e2.posX, e2.posY, e2.posZ, 0, 0, 0, 1);
							//System.out.println("particle summoned");
						}
						
						
					}
				}
			}
			p.addPotionEffect(new PotionEffect(Potion.getPotionById(11), 5));
		}
	}

I am attempting to freeze the arrows in place near the player and add a particle effect (current effect is placeholder) to show they are being held in place by some magical air. 

The system prints out "particle summoned" but no particles show up in the world.

Edited by ironkiller224

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.