diff --git a/electrical/src/main/java/resonantinduction/quantum/gate/RenderQuantumGlyph.java b/electrical/src/main/java/resonantinduction/quantum/gate/RenderQuantumGlyph.java index 3bb9ec66..acbe7914 100644 --- a/electrical/src/main/java/resonantinduction/quantum/gate/RenderQuantumGlyph.java +++ b/electrical/src/main/java/resonantinduction/quantum/gate/RenderQuantumGlyph.java @@ -29,8 +29,9 @@ public class RenderQuantumGlyph implements ISimpleItemRenderer public void renderInventoryItem(ItemStack itemStack) { GL11.glPushMatrix(); + GL11.glTranslated(-0.25, -0.25, -0.25); RenderUtility.bind(TextureMap.locationBlocksTexture); - RenderUtility.renderCube(-0.5, -0.5, -0.5, 0.5, 0.5, 0.5, Block.stone, RenderUtility.getIcon(Reference.PREFIX + "glyph_" + itemStack.getItemDamage())); + RenderUtility.renderCube(0, 0, 0, 0.5, 0.5, 0.5, Block.stone, RenderUtility.getIcon(Reference.PREFIX + "glyph_" + itemStack.getItemDamage())); GL11.glPopMatrix(); } } diff --git a/src/main/resources/assets/resonantinduction/sound/glyph_0.png b/src/main/resources/assets/resonantinduction/sound/glyph_0.png new file mode 100644 index 00000000..23201ee9 Binary files /dev/null and b/src/main/resources/assets/resonantinduction/sound/glyph_0.png differ diff --git a/src/main/resources/assets/resonantinduction/sound/glyph_1.png b/src/main/resources/assets/resonantinduction/sound/glyph_1.png new file mode 100644 index 00000000..5f8c187d Binary files /dev/null and b/src/main/resources/assets/resonantinduction/sound/glyph_1.png differ diff --git a/src/main/resources/assets/resonantinduction/sound/glyph_2.png b/src/main/resources/assets/resonantinduction/sound/glyph_2.png new file mode 100644 index 00000000..cbe2de9c Binary files /dev/null and b/src/main/resources/assets/resonantinduction/sound/glyph_2.png differ diff --git a/src/main/resources/assets/resonantinduction/sound/glyph_3.png b/src/main/resources/assets/resonantinduction/sound/glyph_3.png new file mode 100644 index 00000000..224652db Binary files /dev/null and b/src/main/resources/assets/resonantinduction/sound/glyph_3.png differ diff --git a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_0.png b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_0.png index 84ca11cb..23201ee9 100644 Binary files a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_0.png and b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_0.png differ diff --git a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_1.png b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_1.png index 9bfd32dc..5f8c187d 100644 Binary files a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_1.png and b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_1.png differ diff --git a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_2.png b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_2.png index cd5fac5e..cbe2de9c 100644 Binary files a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_2.png and b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_2.png differ diff --git a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_3.png b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_3.png index 146dbac6..224652db 100644 Binary files a/src/main/resources/assets/resonantinduction/textures/blocks/glyph_3.png and b/src/main/resources/assets/resonantinduction/textures/blocks/glyph_3.png differ