mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 20:11:35 +01:00
Ejectors wind up again.
This commit is contained in:
parent
cb759e793e
commit
e91a15cf5f
1 changed files with 26 additions and 13 deletions
|
@ -1,5 +1,7 @@
|
|||
package com.simibubi.create.content.logistics.block.depot;
|
||||
|
||||
import net.minecraft.util.math.MathHelper;
|
||||
|
||||
import com.mojang.blaze3d.matrix.MatrixStack;
|
||||
import com.simibubi.create.AllBlockPartials;
|
||||
import com.simibubi.create.content.contraptions.base.KineticTileEntity;
|
||||
|
@ -17,6 +19,8 @@ public class EjectorInstance extends ShaftInstance implements IDynamicInstance {
|
|||
|
||||
protected final InstanceKey<ModelData> plate;
|
||||
|
||||
private float lastProgress = Float.NaN;
|
||||
|
||||
public EjectorInstance(InstancedTileRenderer<?> dispatcher, EjectorTileEntity tile) {
|
||||
super(dispatcher, tile);
|
||||
this.tile = tile;
|
||||
|
@ -29,21 +33,12 @@ public class EjectorInstance extends ShaftInstance implements IDynamicInstance {
|
|||
|
||||
@Override
|
||||
public void beginFrame() {
|
||||
float lidProgress = getLidProgress();
|
||||
|
||||
if (tile.lidProgress.settled()) return;
|
||||
if (MathHelper.epsilonEquals(lidProgress, lastProgress)) return;
|
||||
|
||||
pivotPlate();
|
||||
}
|
||||
|
||||
private void pivotPlate() {
|
||||
float lidProgress = tile.getLidProgress(AnimationTickHolder.getPartialTicks());
|
||||
float angle = lidProgress * 70;
|
||||
|
||||
MatrixStack ms = new MatrixStack();
|
||||
|
||||
EjectorRenderer.applyLidAngle(tile, angle, MatrixStacker.of(ms).translate(getInstancePosition()));
|
||||
|
||||
plate.getInstance().setTransform(ms);
|
||||
pivotPlate(lidProgress);
|
||||
lastProgress = lidProgress;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -57,4 +52,22 @@ public class EjectorInstance extends ShaftInstance implements IDynamicInstance {
|
|||
super.remove();
|
||||
plate.delete();
|
||||
}
|
||||
|
||||
private void pivotPlate() {
|
||||
pivotPlate(getLidProgress());
|
||||
}
|
||||
|
||||
private float getLidProgress() {
|
||||
return tile.getLidProgress(AnimationTickHolder.getPartialTicks());
|
||||
}
|
||||
|
||||
private void pivotPlate(float lidProgress) {
|
||||
float angle = lidProgress * 70;
|
||||
|
||||
MatrixStack ms = new MatrixStack();
|
||||
|
||||
EjectorRenderer.applyLidAngle(tile, angle, MatrixStacker.of(ms).translate(getInstancePosition()));
|
||||
|
||||
plate.getInstance().setTransform(ms);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue