You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.client.particle;
 | 
						|
 | 
						|
import cpw.mods.fml.relauncher.Side;
 | 
						|
import cpw.mods.fml.relauncher.SideOnly;
 | 
						|
import net.minecraft.world.World;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public class EntityAuraFX extends EntityFX
 | 
						|
{
 | 
						|
    private static final String __OBFID = "CL_00000929";
 | 
						|
 | 
						|
    public EntityAuraFX(World p_i1232_1_, double p_i1232_2_, double p_i1232_4_, double p_i1232_6_, double p_i1232_8_, double p_i1232_10_, double p_i1232_12_)
 | 
						|
    {
 | 
						|
        super(p_i1232_1_, p_i1232_2_, p_i1232_4_, p_i1232_6_, p_i1232_8_, p_i1232_10_, p_i1232_12_);
 | 
						|
        float f = this.rand.nextFloat() * 0.1F + 0.2F;
 | 
						|
        this.particleRed = f;
 | 
						|
        this.particleGreen = f;
 | 
						|
        this.particleBlue = f;
 | 
						|
        this.setParticleTextureIndex(0);
 | 
						|
        this.setSize(0.02F, 0.02F);
 | 
						|
        this.particleScale *= this.rand.nextFloat() * 0.6F + 0.5F;
 | 
						|
        this.motionX *= 0.019999999552965164D;
 | 
						|
        this.motionY *= 0.019999999552965164D;
 | 
						|
        this.motionZ *= 0.019999999552965164D;
 | 
						|
        this.particleMaxAge = (int)(20.0D / (Math.random() * 0.8D + 0.2D));
 | 
						|
        this.noClip = true;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Called to update the entity's position/logic.
 | 
						|
     */
 | 
						|
    public void onUpdate()
 | 
						|
    {
 | 
						|
        this.prevPosX = this.posX;
 | 
						|
        this.prevPosY = this.posY;
 | 
						|
        this.prevPosZ = this.posZ;
 | 
						|
        this.moveEntity(this.motionX, this.motionY, this.motionZ);
 | 
						|
        this.motionX *= 0.99D;
 | 
						|
        this.motionY *= 0.99D;
 | 
						|
        this.motionZ *= 0.99D;
 | 
						|
 | 
						|
        if (this.particleMaxAge-- <= 0)
 | 
						|
        {
 | 
						|
            this.setDead();
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |