Skip to content

Instantly share code, notes, and snippets.

newmtl redstone_crystal
map_Kd redstone_block.png
{
"forge_marker": 1,
"defaults": {
"model": "ash:basicCannonball.obj",
"transform": "forge:default-block",
"custom": {
"flip-v": true
}
}
"variants": {
2016-01-17 13:47:31,977 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[13:47:32] [main/INFO]: Extra: []
[13:47:32] [main/INFO]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Gerald/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, @@MCVERSION@@, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[13:47:32] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[13:47:32] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[13:47:32] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[13:47:32] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[13:47:32] [main/INFO]: Forge Mod Loader version 11.15.0.0 for Minecraft 1.8.9 loading
[13:47:32] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.
public static class OBJCustomDataBlock extends Block
{
public static enum PylonVariant implements IStringSerializable
{
MANA,
NATURA,
GAIA;
@Override
public String getName()
public static class OBJClock extends Block
{
public static final PropertyDirection FACING = PropertyDirection.create("facing", EnumFacing.Plane.HORIZONTAL);
public static final PropertyBool TWENTY_FOUR = PropertyBool.create("twenty_four");
public static final PropertyBool SECONDARY = PropertyBool.create("secondary");
public static final OBJClock instance = new OBJClock();
public static final String name = "OBJClock";
private ExtendedBlockState state = new ExtendedBlockState(this, new IProperty[] {FACING, TWENTY_FOUR, SECONDARY}, new IUnlistedProperty[] {OBJModel.OBJProperty.instance});
// private String[] configNames = new String[] {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"};
// private int config = 0;
newmtl red
Kd 1 0 0
newmtl orange
Kd 1 0.5 0
newmtl yellow
Kd 1 1 0
newmtl yellow-green
C:\Users\Gerald\Documents\Forge - OBJLoader Copy>gradlew uploadArchives
This set of MCP mappings was designed for MC 1.8.8. Use at your own peril.
#################################################
ForgeGradle 2.1-SNAPSHOT-21e9d79
https://github.com/MinecraftForge/ForgeGradle
#################################################
Powered by MCP unknown
http://modcoderpack.com
by: Searge, ProfMobius, Fesh0r,
R4wk, ZeuX, IngisKahn, bspkrs
{
"forge_marker": 1,
"defaults": {
"textures": {},
"model": "forgedebugmodelloaderregistry:eye.obj",
"transform": "forge:default-block",
"custom": {
"flipDX11": true,
"processUVs": {
"clamp": true
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000005ab0538a, pid=900, tid=15964
#
# JRE version: Java(TM) SE Runtime Environment (8.0_66-b18) (build 1.8.0_66-b18)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.66-b18 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V [jvm.dll+0xf538a]
#
public void preInit()
{
OBJLoader.instance.addDomain(MODID.toLowerCase());
ClientRegistry.bindTileEntitySpecialRenderer(OBJClockTileEntity.class, new OBJClockRender());
Item item8 = Item.getItemFromBlock(OBJClock.instance);
ModelLoader.setCustomModelResourceLocation(item8, 0, new ModelResourceLocation(MODID.toLowerCase() + ":" + OBJClock.name, "inventory"));
OBJClockRender.init();
}