Portal block
This commit is contained in:
parent
439e96a526
commit
59a0d0df6c
18 changed files with 765 additions and 1 deletions
76
src/main/java/ru/betterend/particle/PaticlePortalSphere.java
Normal file
76
src/main/java/ru/betterend/particle/PaticlePortalSphere.java
Normal file
|
@ -0,0 +1,76 @@
|
|||
package ru.betterend.particle;
|
||||
|
||||
import net.fabricmc.api.EnvType;
|
||||
import net.fabricmc.api.Environment;
|
||||
import net.minecraft.client.particle.AnimatedParticle;
|
||||
import net.minecraft.client.particle.Particle;
|
||||
import net.minecraft.client.particle.ParticleFactory;
|
||||
import net.minecraft.client.particle.SpriteProvider;
|
||||
import net.minecraft.client.world.ClientWorld;
|
||||
import net.minecraft.particle.DefaultParticleType;
|
||||
import net.minecraft.util.math.MathHelper;
|
||||
import ru.betterend.util.MHelper;
|
||||
|
||||
public class PaticlePortalSphere extends AnimatedParticle {
|
||||
private int ticks;
|
||||
private double preVX;
|
||||
private double preVY;
|
||||
private double preVZ;
|
||||
private double nextVX;
|
||||
private double nextVY;
|
||||
private double nextVZ;
|
||||
|
||||
public PaticlePortalSphere(ClientWorld world, double x, double y, double z, SpriteProvider spriteProvider) {
|
||||
super(world, x, y, z, spriteProvider, 0);
|
||||
setSprite(spriteProvider.getSprite(random));
|
||||
this.maxAge = MHelper.randRange(20, 80, random);
|
||||
this.scale = MHelper.randRange(0.05F, 0.15F, random);
|
||||
this.setColor(0xFEBBD5);
|
||||
this.setTargetColor(0xBBFEE4);
|
||||
this.setSpriteForAge(spriteProvider);
|
||||
|
||||
preVX = random.nextGaussian() * 0.02;
|
||||
preVY = random.nextGaussian() * 0.02;
|
||||
preVZ = random.nextGaussian() * 0.02;
|
||||
|
||||
nextVX = random.nextGaussian() * 0.02;
|
||||
nextVY = random.nextGaussian() * 0.02;
|
||||
nextVZ = random.nextGaussian() * 0.02;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void tick() {
|
||||
ticks++;
|
||||
if (ticks > 30) {
|
||||
preVX = nextVX;
|
||||
preVY = nextVY;
|
||||
preVZ = nextVZ;
|
||||
nextVX = random.nextGaussian() * 0.02;
|
||||
nextVY = random.nextGaussian() * 0.02;
|
||||
nextVZ = random.nextGaussian() * 0.02;
|
||||
ticks = 0;
|
||||
}
|
||||
double delta = (double) ticks / 30.0;
|
||||
|
||||
this.velocityX = MathHelper.lerp(delta, preVX, nextVX);
|
||||
this.velocityY = MathHelper.lerp(delta, preVY, nextVY);
|
||||
this.velocityZ = MathHelper.lerp(delta, preVZ, nextVZ);
|
||||
|
||||
super.tick();
|
||||
}
|
||||
|
||||
@Environment(EnvType.CLIENT)
|
||||
public static class FactoryPortalSphere implements ParticleFactory<DefaultParticleType> {
|
||||
|
||||
private final SpriteProvider sprites;
|
||||
|
||||
public FactoryPortalSphere(SpriteProvider sprites) {
|
||||
this.sprites = sprites;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Particle createParticle(DefaultParticleType type, ClientWorld world, double x, double y, double z, double vX, double vY, double vZ) {
|
||||
return new PaticlePortalSphere(world, x, y, z, sprites);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue