Pattern Rendering and other Rendering

This commit is contained in:
Sebastian Hartte
2020-07-20 20:13:20 +02:00
parent d053c9b1bc
commit 019f570331
69 changed files with 994 additions and 1398 deletions
@@ -18,6 +18,7 @@
package appeng.tile.misc;
import appeng.client.render.model.AEModelData;
import net.minecraft.block.entity.BlockEntityType;
import appeng.tile.AEBaseBlockEntity;
@@ -28,4 +29,9 @@ public class SkyCompassBlockEntity extends AEBaseBlockEntity {
super(tileEntityTypeIn);
}
@Override
public Object getRenderAttachmentData() {
// For compasses, the forward/up are flipped
return new AEModelData(getForward(), getUp());
}
}