ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/lens/LensConversion.java

33 lines
1 KiB
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.api.lens;
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
import de.ellpeck.actuallyadditions.api.internal.IAtomicReconstructor;
import net.minecraft.block.BlockState;
import net.minecraft.util.math.BlockPos;
/**
* This is the base class for a Reconstructor Lens Type that converts two items
2016-05-19 20:05:12 +02:00
* via the ActuallyAdditionsAPI.RECONSTRUCTOR_LENS_CONVERSION_RECIPES list.
2016-06-01 00:39:35 +02:00
* <p>
* If you want to make a new type of conversion, just use your type in the recipe
* If you want to use the default type of conversion, use ActuallyAdditionsAPI.lensDefaultConversion.
*/
2019-05-02 09:10:29 +02:00
public class LensConversion extends Lens {
@Override
public boolean invoke(BlockState hitState, BlockPos hitBlock, IAtomicReconstructor tile) {
return ActuallyAdditionsAPI.methodHandler.invokeConversionLens(hitState, hitBlock, tile);
}
@Override
2019-05-02 09:10:29 +02:00
public float[] getColor() {
return new float[] { 27F / 255F, 109F / 255F, 1F };
}
@Override
2019-05-02 09:10:29 +02:00
public int getDistance() {
return 10;
}
}