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
Checking out files: 100% (557/557), done. | |
Note: checking out 'origin/1.8.8'. | |
You are in 'detached HEAD' state. You can look around, make experimental | |
changes and commit them, and you can discard any commits you make in this | |
state without impacting any branches by performing another checkout. | |
If you want to create a new branch to retain commits you create, you may | |
do so (now or later) by using -b with the checkout command again. Example: |
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 | |
} | |
}, |
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": { | |
"top": "openfm:blocks/radio_side", | |
"front": "openfm:blocks/radio_front", | |
"side": "openfm:blocks/radio_side" | |
}, | |
"model": "minecraft:block/orientable" | |
}, |
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 registerRenderers() { | |
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(AutoOreDictConv.converter), 0, new ModelResourceLocation(AutoOreDictConv.MODID + ":" + BlockConverter.NAME, "inventory")); | |
} |
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
buildscript { | |
repositories { | |
mavenCentral() | |
maven { | |
name = "forge" | |
url = "http://files.minecraftforge.net/maven" | |
} | |
maven { | |
name = "sonatype" | |
url = "https://oss.sonatype.org/content/repositories/snapshots/" |
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
[16:20:43] [main/INFO]: Extra: [] | |
[16:20:43] [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] | |
[16:20:43] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
[16:20:43] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
[16:20:43] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker | |
[16:20:43] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker | |
[16:20:43] [main/INFO]: Forge Mod Loader version 11.14.3.0 for Minecraft 1.8 loading | |
[16:20:43] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_65 | |
[16:20:43 |
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
**************************** | |
Powered By MCP: | |
http://modcoderpack.com/ | |
Searge, ProfMobius, Fesh0r, | |
R4wk, ZeuX, IngisKahn, bspkrs | |
MCP Data version : 9.10 | |
**************************** | |
:getVersionJson | |
:getAssetIndex UP-TO-DATE | |
:getAssets |
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 Matrix4f getMatrix(EnumFacing facing) { | |
Matrix4f ret = new Matrix4f(); | |
switch (facing) { | |
case DOWN: ret = ModelRotation.X90_Y0.getMatrix(); break; | |
case UP: ret = ModelRotation.X270_Y0.getMatrix(); break; | |
case NORTH: ret = ModelRotation.X0_Y0.getMatrix(); break; | |
case SOUTH: ret = ModelRotation.X0_Y180.getMatrix(); break; | |
case WEST: ret = ModelRotation.X0_Y270.getMatrix(); break; | |
case EAST: ret = ModelRotation.X0_Y90.getMatrix(); break; | |
default: ret.setIdentity(); |
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
* What went wrong: | |
A problem occurred configuring root project 'Rollercoaster2'. | |
> java.lang.NullPointerException (no error message) | |
* Try: | |
Run with --info or --debug option to get more log output. | |
* Exception is: | |
org.gradle.api.ProjectConfigurationException: A problem occurred configuring root project 'Rollercoaster2'. | |
at org.gradle.configuration.project.LifecycleProjectEvaluator.addConfigurationFailure(LifecycleProjectEvaluator.java:79) |
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
buildscript { | |
repositories { | |
mavenCentral() | |
maven { | |
name = "forge" | |
url = "http://files.minecraftforge.net/maven" | |
} | |
maven { | |
name = "sonatype" | |
url = "https://oss.sonatype.org/content/repositories/snapshots/" |