mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-12 23:37:29 +01:00
fix instances & update flywheel
This commit is contained in:
parent
05c2cbaf73
commit
73661845fe
5 changed files with 6 additions and 16 deletions
|
@ -23,7 +23,7 @@ use_parchment = true
|
|||
# dependency versions
|
||||
registrate_version = MC1.20-1.3.3
|
||||
flywheel_minecraft_version = 1.20.1
|
||||
flywheel_version = 1.0.0-beta-97
|
||||
flywheel_version = 1.0.0-beta-98
|
||||
jei_minecraft_version = 1.20.1
|
||||
jei_version = 15.2.0.22
|
||||
curios_minecraft_version = 1.20.1
|
||||
|
|
|
@ -42,13 +42,8 @@ public class FluidValveVisual extends ShaftVisual<FluidValveBlockEntity> impleme
|
|||
settled = false;
|
||||
|
||||
pointer = instancerProvider.instancer(InstanceTypes.TRANSFORMED, Models.partial(AllPartialModels.FLUID_VALVE_POINTER)).createInstance();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(float pt) {
|
||||
super.init(pt);
|
||||
|
||||
transformPointer(pt);
|
||||
transformPointer(partialTick);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -15,9 +15,6 @@ public class SingleRotatingVisual<T extends KineticBlockEntity> extends KineticB
|
|||
|
||||
public SingleRotatingVisual(VisualizationContext context, T blockEntity, float partialTick) {
|
||||
super(context, blockEntity, partialTick);
|
||||
}
|
||||
|
||||
public void init(float pt) {
|
||||
rotatingModel = instancerProvider.instancer(AllInstanceTypes.ROTATING, model())
|
||||
.createInstance();
|
||||
setup(rotatingModel);
|
||||
|
|
|
@ -31,11 +31,10 @@ public abstract class GaugeVisual extends ShaftVisual<GaugeBlockEntity> implemen
|
|||
|
||||
protected GaugeVisual(VisualizationContext context, GaugeBlockEntity blockEntity, float partialTick) {
|
||||
super(context, blockEntity, partialTick);
|
||||
|
||||
init(partialTick);
|
||||
init();
|
||||
}
|
||||
|
||||
public void init(float partialTick) {
|
||||
public void init() {
|
||||
GaugeBlock gaugeBlock = (GaugeBlock) blockState.getBlock();
|
||||
|
||||
Instancer<TransformedInstance> dialModel = instancerProvider.instancer(InstanceTypes.TRANSFORMED, Models.partial(AllPartialModels.GAUGE_DIAL));
|
||||
|
|
|
@ -26,11 +26,10 @@ public class BracketedKineticBlockEntityVisual extends SingleRotatingVisual<Brac
|
|||
|
||||
public BracketedKineticBlockEntityVisual(VisualizationContext context, BracketedKineticBlockEntity blockEntity, float partialTick) {
|
||||
super(context, blockEntity, partialTick);
|
||||
|
||||
init(partialTick);
|
||||
init();
|
||||
}
|
||||
|
||||
public void init(float partialTick) {
|
||||
public void init() {
|
||||
if (ICogWheel.isLargeCog(blockEntity.getBlockState())) {
|
||||
// Large cogs sometimes have to offset their teeth by 11.25 degrees in order to
|
||||
// mesh properly
|
||||
|
|
Loading…
Reference in a new issue