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.

kartoffelkalle

Members
  • Joined

  • Last visited

  1. kartoffelkalle joined the community
  2. I am working on an entity that functions in a similar way to the arrow. its a projectile that flies in a straight line and gets stuck in blocks / entities. It renders as an item that is oriented in the way the projectile is going. This all works as expected, but sometimes when I summon my entity it glitches around: The rotation yaw and pitch just randomly change to other values for like one render tick and then change back. I'm pretty sure Ive got all the partialTicks interpolation right, and the values for rotationyaw/pitch are correct at the end of the entity tick on both client and server. I have debugged that by logging the values. However, in my entityrenderer sometimes the rotation fields values have weird spikes for a single tick. This means that somethign happens in between the ticks that changes the value somehow and I have no clue what it is. Any ideas? //ENTITY RENDERER matrixStack.push(); matrixStack.rotate(Vector3f.YP.rotationDegrees(90 - MathHelper.lerp(partialTicks, entity.prevRotationYaw, entity.rotationYaw))); matrixStack.rotate(Vector3f.ZP.rotationDegrees(-45 - MathHelper.lerp(partialTicks, entity.prevRotationPitch, entity.rotationPitch))); ItemRenderer renderer = Minecraft.getInstance().getItemRenderer(); renderer.renderItem(new ItemStack(ModItems.MANA_SHARD.get()), TransformType.GROUND, lightlevel, OverlayTexture.NO_OVERLAY, matrixStack, buffer); matrixStack.pop(); super.render(entity, entityYaw, partialTicks, matrixStack, buffer, lightlevel); //ENTITY TICK super.tick(); this.prevPosX = this.getPosX(); this.prevPosY = this.getPosY(); this.prevPosZ = this.getPosZ(); this.prevRotationPitch = this.rotationPitch; this.prevRotationYaw = this.rotationYaw; this.ticksAlive++; if (!inGround) { this.ticksInAir++; Vec3d motion = this.getMotion(); float f = this.isInWater() ? this.getMotionFactor() : 0.7F; double x = this.getPosX() + motion.x * f; double y = this.getPosY() + motion.y * f; double z = this.getPosZ() + motion.z * f; ProjectileHelper.rotateTowardsMovement(this, 0.2F); if (this.isInWater()) { for (int i = 0; i < 4; ++i) { this.world.addParticle(ParticleTypes.BUBBLE, x - motion.x * 0.25D, y - motion.y * 0.25D, z - motion.z * 0.25D, motion.x, motion.y, motion.z); } } Vec3d newMotion = motion.add(this.accelerationX, this.accelerationY, this.accelerationZ); this.setMotion(newMotion); this.setPosition(x, y, z);

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.