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
newmtl redstone_crystal | |
map_Kd redstone_block.png |
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
{ | |
"forge_marker": 1, | |
"defaults": { | |
"model": "ash:basicCannonball.obj", | |
"transform": "forge:default-block", | |
"custom": { | |
"flip-v": true | |
} | |
} | |
"variants": { |
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
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. |
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 static class OBJCustomDataBlock extends Block | |
{ | |
public static enum PylonVariant implements IStringSerializable | |
{ | |
MANA, | |
NATURA, | |
GAIA; | |
@Override | |
public String getName() |
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 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; |
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
newmtl red | |
Kd 1 0 0 | |
newmtl orange | |
Kd 1 0.5 0 | |
newmtl yellow | |
Kd 1 1 0 | |
newmtl yellow-green |
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
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 |
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
{ | |
"forge_marker": 1, | |
"defaults": { | |
"textures": {}, | |
"model": "forgedebugmodelloaderregistry:eye.obj", | |
"transform": "forge:default-block", | |
"custom": { | |
"flipDX11": true, | |
"processUVs": { | |
"clamp": true |
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
# | |
# 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] | |
# |
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 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(); | |
} |