Advertisement
Guest User

Untitled

a guest
Aug 21st, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. package net.madcrazydrumma.skyrimcraft.entity.spell;
  2.  
  3. import net.minecraft.client.Minecraft;
  4. import net.minecraft.client.particle.ParticleRedstone;
  5. import net.minecraft.entity.Entity;
  6. import net.minecraft.nbt.NBTTagCompound;
  7. import net.minecraft.util.EnumParticleTypes;
  8. import net.minecraft.world.World;
  9. import net.minecraftforge.fml.relauncher.Side;
  10. import net.minecraftforge.fml.relauncher.SideOnly;
  11.  
  12. public class EntityShockwaveFX extends Entity
  13. {
  14. private double radius = 0.2D;
  15.  
  16. public EntityShockwaveFX(World worldIn, Entity sourceEntity) {
  17. super(worldIn);
  18. setSize(0, 0);
  19. setLocationAndAngles(sourceEntity.posX, sourceEntity.posY, sourceEntity.posZ, sourceEntity.rotationYaw, sourceEntity.rotationPitch);
  20. }
  21.  
  22. public void onUpdate() {
  23. super.onUpdate();
  24. for (int angle=0;angle<360;angle+=10)
  25. worldObj.spawnParticle(EnumParticleTypes.REDSTONE, posX+radius*Math.cos(Math.toRadians(rotationYaw))*Math.cos(Math.toRadians(rotationPitch))*Math.cos(Math.toRadians(angle)), posY+radius*Math.sin(Math.toRadians(angle)), posZ+radius*Math.sin(Math.toRadians(rotationYaw))*Math.cos(Math.toRadians(rotationPitch))*Math.cos(Math.toRadians(angle)), 1, 0,191,255);
  26.  
  27. moveEntity(-Math.sin(Math.toRadians(rotationYaw))*Math.cos(Math.toRadians(rotationPitch)) , -Math.sin(Math.toRadians(rotationPitch)), Math.cos(Math.toRadians(rotationYaw))* Math.cos(Math.toRadians(rotationPitch)));
  28. radius+=0.15;
  29.  
  30. if(radius>5)
  31. setDead();
  32. }
  33.  
  34. @Override
  35. protected void entityInit() {
  36. }
  37.  
  38. @Override
  39. protected void readEntityFromNBT(NBTTagCompound tagCompound) {
  40. }
  41.  
  42. @Override
  43. protected void writeEntityToNBT(NBTTagCompound tagCompound) {
  44. }
  45.  
  46. @SideOnly(Side.CLIENT)
  47. @Override
  48. public int getBrightnessForRender(float partialTicks) {
  49. return 0;
  50. }
  51.  
  52. public float getBrightness(float partialTicks) {
  53. return 0;
  54. }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement