Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.madcrazydrumma.skyrimcraft.entity.spell;
- import net.minecraft.client.Minecraft;
- import net.minecraft.client.particle.ParticleRedstone;
- import net.minecraft.entity.Entity;
- import net.minecraft.nbt.NBTTagCompound;
- import net.minecraft.util.EnumParticleTypes;
- import net.minecraft.world.World;
- import net.minecraftforge.fml.relauncher.Side;
- import net.minecraftforge.fml.relauncher.SideOnly;
- public class EntityShockwaveFX extends Entity
- {
- private double radius = 0.2D;
- public EntityShockwaveFX(World worldIn, Entity sourceEntity) {
- super(worldIn);
- setSize(0, 0);
- setLocationAndAngles(sourceEntity.posX, sourceEntity.posY, sourceEntity.posZ, sourceEntity.rotationYaw, sourceEntity.rotationPitch);
- }
- public void onUpdate() {
- super.onUpdate();
- for (int angle=0;angle<360;angle+=10)
- 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);
- 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)));
- radius+=0.15;
- if(radius>5)
- setDead();
- }
- @Override
- protected void entityInit() {
- }
- @Override
- protected void readEntityFromNBT(NBTTagCompound tagCompound) {
- }
- @Override
- protected void writeEntityToNBT(NBTTagCompound tagCompound) {
- }
- @SideOnly(Side.CLIENT)
- @Override
- public int getBrightnessForRender(float partialTicks) {
- return 0;
- }
- public float getBrightness(float partialTicks) {
- return 0;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement