This file contains hidden or 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
[10:00:51] [Client thread/WARN] [FML]: **************************************** | |
[10:00:51] [Client thread/WARN] [FML]: * Could not determine owning mod for @EventBusSubscriber on com.admiraldamage.morestuff.util.handlers.RegistryHandler for mod msat | |
[10:00:51] [Client thread/WARN] [FML]: * at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:71) | |
[10:00:51] [Client thread/WARN] [FML]: * at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:614) | |
[10:00:51] [Client thread/WARN] [FML]: * at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
[10:00:51] [Client thread/WARN] [FML]: * at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) | |
[10:00:51] [Client thread/WARN] [FML]: * at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) | |
[10:00:51] [Client thread/WARN] [FML]: * at java.lang.reflect.Method.invoke(Unknown Source)... | |
[10:00:51] [Client thread/WARN] [FML]: **************************************** | |
[10:00:5 |
This file contains hidden or 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
#version 330 core | |
// Interpolated values from vertex shaders | |
in vec2 UV; | |
// Output data | |
out vec3 color; | |
// Values that stay constant for the whole mesh | |
uniform sampler2D myTextureSampler; |
This file contains hidden or 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
[12:36:15] [Client thread/ERROR] [FML]: Exception loading model for variant transitmod:gear#facing=down for blockstate "transitmod:gear[facing=down]" | |
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model transitmod:gear#facing=down with loader VariantLoader.INSTANCE, skipping | |
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] | |
at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:241) ~[ModelLoader.class:?] | |
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] | |
at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] | |
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[ModelLoader.class:?] | |
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] | |
at net.minecraf |
This file contains hidden or 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
private AxisAlignedBB getBoundingBox(int hex) { | |
Vec3d min = new Vec3d((hex & 0xF00000) / 16.0, (hex & 0x0F0000) / 16.0, (hex & 0x00F000) / 16.0); | |
Vec3d max = new Vec3d((hex & 0x000F00) / 16.0, (hex & 0x0000F0) / 16.0, (hex & 0x00000F) / 16.0); | |
Pair<Vec3d, Vec3d> minMax = StructureUtils.getMinMax(min, max); | |
return new AxisAlignedBB(minMax.getLeft(), minMax.getRight()); | |
} |
This file contains hidden or 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
File savesDir = FMLClientHandler.instance().getSavesDir(); | |
TransitMod.logger.printf(Level.INFO, "saves dir: %s, exists: %b", savesDir.getAbsolutePath(), savesDir.exists()); | |
File test = new File(TransitMod.class.getResource("/assets/").getPath()); | |
TransitMod.logger.printf(Level.INFO, "test: %s, exists: %b", test.getAbsolutePath(), test.exists()); |
This file contains hidden or 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
[14:45:40] [Client thread/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:649]: ---- Minecraft Crash Report ---- | |
// I just don't know what went wrong :( | |
Time: 8/19/16 2:45 PM | |
Description: Initializing game | |
java.lang.RuntimeException: java.io.FileNotFoundException: Source 'C:\Users\Gerald\Documents\Bitbucket\Transit%20Authority\Transit%20Mod\classes\production\Transit_Mod_main\assets\transitmod\structures' does not exist | |
at org.bitbucket.transitauthority.transitmod.util.FileManager.copyDefaultStructuresFromJar(FileManager.java:98) | |
at org.bitbucket.transitauthority.transitmod.util.FileManager.preInit(FileManager.java:27) | |
at org.bitbucket.transitauthority.transitmod.proxy.ClientProxy.preInit(ClientProxy.java:23) |
This file contains hidden or 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 BlockInfo { | |
public final BlockPos pos; | |
public final IBlockState state; | |
public final NBTTagCompound tileData; | |
public BlockInfo(BlockPos pos, IBlockState state, NBTTagCompound tileData) { | |
this.pos = pos; //relative block position | |
this.state = state; //blockstate at pos | |
this.tileData = tileData; //this is null for most blocks | |
} |
This file contains hidden or 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
import net.minecraft.block.material.MapColor; | |
import net.minecraft.block.material.Material; | |
import net.minecraft.block.properties.IProperty; | |
import net.minecraft.block.properties.PropertyBool; | |
import net.minecraft.block.state.BlockStateContainer; | |
import net.minecraft.block.state.IBlockState; | |
import net.minecraft.client.renderer.block.model.ModelResourceLocation; | |
import net.minecraft.creativetab.CreativeTabs; | |
import net.minecraft.entity.EntityLivingBase; | |
import net.minecraft.entity.player.EntityPlayer; |
This file contains hidden or 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
import com.google.common.collect.Lists; | |
import net.minecraft.command.*; | |
import net.minecraft.server.MinecraftServer; | |
import net.minecraft.util.EnumFacing; | |
import net.minecraft.util.math.BlockPos; | |
import org.bitbucket.transitauthority.transitmod.multiblock.old.MultiBlockManager; | |
import org.bitbucket.transitauthority.transitmod.multiblock.old.MultiBlockTemplate; | |
import org.bitbucket.transitauthority.transitmod.multiblock.old.structures.MultiBlockTest; | |
import java.util.List; |
This file contains hidden or 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
{ | |
"multipart": [ | |
{ "when": { "OR": [ | |
{"north": "none", "east": "none", "south": "none", "west": "none"}, | |
{"north": "side|up", "east": "side|up" }, | |
{"east": "side|up", "south": "side|up" }, | |
{"south": "side|up", "west": "side|up"}, | |
{"west": "side|up", "north": "side|up"} | |
]}, | |
"apply": { "model": "redstone_dot" } |
NewerOlder