Jump to content

nloah

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by nloah

  1. I can get the texture to load, but the item is rotated incorrectly and is sized strangely. Here's the item .json: { "parent":"testmod:item/standard_item", "textures": { "layer0":"testmod:items/test_item" } } and the parent: { "parent":"builtin/generated", "display": { "thirdperson": { "rotation": [ -90, 0, 0 ], "translation": [ 0, 1, -3 ], "scale": [ 0.55, 0.55, 0.55 ] }, "firstperson": { "rotation": [ 0, -135, 25 ], "translation": [ 0, 4, 2 ], "scale": [ 1.7, 1.7, 1.7 ] } } } I'm not getting any errors, but it even seems as if no change I make in the parent file is reflected in-game. Using IntelliJ. EDIT: Think I figured it out, 1.9's format changed a bit. If anyone else has this issues, here's 1.9: { "parent": "builtin/generated", "display": { "ground": { "rotation": [ 0, 0, 0 ], "translation": [ 0, 2, 0], "scale":[ 0.5, 0.5, 0.5 ] }, "head": { "rotation": [ 0, 180, 0 ], "translation": [ 0, 13, 7], "scale":[ 1, 1, 1] }, "thirdperson_righthand": { "rotation": [ 0, 0, 0 ], "translation": [ 0, 3, 1 ], "scale": [ 0.55, 0.55, 0.55 ] }, "firstperson_righthand": { "rotation": [ 0, -90, 25 ], "translation": [ 1.13, 3.2, 1.13], "scale": [ 0.68, 0.68, 0.68 ] } } }
  2. This error outputs in my console when I try running, even after a complete reinstall. I used getIntellijRuns to create the client and server tasks as shown in CPW's video: but I get this error: Exception in thread "main" java.lang.ClassNotFoundException: GradleStart at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:122) Process finished with exit code 1 I can however use the runClient gradle task and successfully load, but I can't get the console to appear there.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.