This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title Block Game | |
author quat | |
background_color orange | |
text_color white | |
======== | |
OBJECTS | |
======== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
size(500,500,OPENGL); | |
frameRate(60); | |
smooth(8); | |
} | |
float s = 2.5; | |
void draw() { | |
background(#D7FAD7); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
size(700,700); | |
background(0); | |
smooth(4); | |
} | |
void draw() { | |
stroke(255,60); | |
strokeWeight(1); | |
noFill(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set run directory to E:\Stuff\game\MC\Lawnchair | |
Native Launcher Version: 729-stage | |
Operating System: Windows 7 Home Premium | |
Application Hash: caa1d7d4865195b916f2b5d2df3ae804637894bc | |
Application Data directory: C:\Users\New User\AppData\Roaming/.minecraft | |
Executable Path: Minecraft_staging.exe | |
App Directory dir: E:\Stuff\game\MC\Lawnchair | |
Start dir: C:/Users/New User/AppData/Roaming/.minecraft | |
Launcher dir: E:/Stuff/game/MC/Lawnchair/game | |
TmpDir dir: E:/Stuff/game/MC/Lawnchair/tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TeRenderWaypointBasic extends TileEntitySpecialRenderer<TeWaypointBasic> { | |
ResourceLocation logSideTex = new ResourceLocation("minecraft:textures/blocks/log_oak.png"); | |
ResourceLocation logEndTex = new ResourceLocation("minecraft:textures/blocks/log_oak_top"); | |
//HERE WE GO BITCHES | |
public void renderTileEntityAt(TeWaypointBasic te, double x, double y, double z, float pt, int destroyStage) { | |
TextureManager textureManager = Minecraft.getMinecraft().renderEngine; | |
Tessellator tessellator = Tessellator.getInstance(); | |
VertexBuffer buffer = tessellator.getBuffer(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package quaternary.incorporeal.block; | |
import net.minecraft.block.Block; | |
import net.minecraft.block.material.MapColor; | |
import net.minecraft.block.material.Material; | |
import net.minecraft.block.state.BlockStateContainer; | |
import net.minecraft.block.state.IBlockState; | |
import net.minecraft.entity.EntityLivingBase; | |
import net.minecraft.entity.player.EntityPlayer; | |
import net.minecraft.item.EnumDyeColor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[17:33:25] [main/INFO] [No Debug 5 You]: =========================================================== | |
[17:33:25] [main/INFO] [No Debug 5 You]: Beginning dump of class names... | |
[17:33:25] [main/INFO] [No Debug 5 You]: =========================================================== | |
[17:33:25] [main/INFO] [No Debug 5 You]: DEBUG:::: Found a net.minecraftforge.fml.common.eventhandler.EventPriority | |
[17:33:25] [main/INFO] [No Debug 5 You]: DEBUG:::: which is not an asmeventhandler | |
[17:33:25] [main/INFO] [No Debug 5 You]: DEBUG:::: Found a ASM: class vazkii.botania.client.core.handler.HUDHandler onDrawScreenPre(Lnet/minecraftforge/client/event/RenderGameOverlayEvent$Pre;)V | |
[17:33:25] [main/INFO] [No Debug 5 You]: DEBUG:::: Somehow this doesnt have the text event idk | |
[17:33:25] [main/INFO] [No Debug 5 You]: DEBUG:::: Found a net.minecraftforge.fml.common.eventhandler.EventPriority | |
[17:33:25] [main/INFO] [No Debug 5 You]: DEBUG:::: which is not an asmeventhandler | |
[17:33:25] [main/INFO] [No Debug 5 You]: DEBUG:::: Found a A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MultiMC version: 0.6.1-develop-1213 | |
Minecraft folder is: | |
E:/Stuff/game/MC/MultiMC/instances/Modjnam Mods/.minecraft | |
Java path is: | |
C:/ProgramData/Oracle/Java/javapath/javaw.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Something with Facades and failing to generate one for a certain Aether block |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"credit": "Made with Blockbench, a gratis, modern block model editor by JannisX11", | |
"textures": { | |
"particle": "#trim" | |
}, | |
"parent": "block/block", | |
"elements": [ | |
{ | |
"name": "frame", | |
"from": [0, 0, 2], |
OlderNewer