Highly incomplete code. First work on porting to 1.12. Still need to rework a LOT of things.

This commit is contained in:
Gunther De Wachter
2017-07-06 01:57:19 +02:00
parent d67f97cd16
commit fbcf8c4705
127 changed files with 850 additions and 425 deletions
@@ -22,8 +22,9 @@ import java.util.Collection;
import java.util.Collections;
import java.util.EnumMap;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import com.google.common.base.Function;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
@@ -37,6 +38,7 @@ import net.minecraftforge.common.model.IModelState;
import net.minecraftforge.common.model.TRSRTransformation;
import appeng.block.storage.DriveSlotState;
import net.minecraftforge.common.model.animation.IClip;
public class DriveModel implements IModel
@@ -94,4 +96,34 @@ public class DriveModel implements IModel
{
return TRSRTransformation.identity();
}
@Override
public Optional<? extends IClip> getClip(String name) {
return Optional.empty();
}
@Override
public IModel process(ImmutableMap<String, String> customData) {
return null;
}
@Override
public IModel smoothLighting(boolean value) {
return null;
}
@Override
public IModel gui3d(boolean value) {
return null;
}
@Override
public IModel uvlock(boolean value) {
return null;
}
@Override
public IModel retexture(ImmutableMap<String, String> textures) {
return null;
}
}