[ BLOCK RENDER SPECIAL ]
-
Crash Report :
[22:58:37 [main/INFO] [GradleStart]: Extra: []
]
[22:58:37 [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --assetsDir, C:/Users/Family/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]]
[22:58:37 [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker]
[22:58:37 [main/INFO] [FML]: Forge Mod Loader version 7.99.18.1452 for Minecraft 1.7.10 loading]
[22:58:37 [main/INFO] [FML]: Java is Java HotSpot
64-Bit Server VM, version 1.8.0_45, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_45]
[22:58:37 [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation]
[22:58:37 [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker]
[22:58:37 [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin]
[22:58:37 [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin]
[22:58:37 [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker]
[22:58:37 [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper]
[22:58:38 [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!]
[22:58:44 [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing]
[22:58:44 [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper]
[22:58:44 [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker]
[22:58:46 [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker]
[22:58:46 [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker]
[22:58:46 [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker]
[22:58:46 [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}]
[22:58:49 [main/INFO]: Setting user: Player836]
[22:58:56 [Client thread/INFO]: LWJGL Version: 2.9.1]
[22:59:01 [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: –-- Minecraft Crash Report ----]
// I blame Dinnerbone.%(#333333)
-
“Shape5” alors que çà devrait être Shape3, vérifie tout ton fichier, il peut y avoir d’autres erreurs comme celle là
-
PoignerCoté1 = new ModelRenderer(this, 0, 10);
Tu n’as toujours pas viré les accents. -
J’ai corrigé les erreurs mais j’ai toujours pas de model qui est appliqué a mon block
-
tu as mis le bindTexture après le rendu du model.
-
Le tile entity est-il enregistré dans la classe principale ?
-
Oui bien sur.
-
@‘SCAREX’:
tu as mis le bindTexture après le rendu du model.
Tu as vu ce message ?
-
oui oui
-
Que dois-je faire pour résoudre ce problème? :huh: , j’ai refait entièrement mes classe sans résultat.
-
Enregistre l’id de rendu avant, et si çà ne marche toujours pas, envoi classe principale + classe du tile entity + classe du block + client proxy + model + crash report.
-
voici mes class, je ne te donne pas les crash report étant donner que mon jeu de crash pas.
j’ai tout upload sur mediafire car c’est trop long.
http://www.mediafire.com/download/v0v91175nclbjok/src.zip -
1. Apprend le java avant toute chose : les noms de classe commencent par une majuscule, tu peux toujours le changer facilement en faisant Alt + shift + R sur le nom pour le changer partout.
2. évite le copier-coller : tesrRenderId est le nom donné par robin dans son tuto
3. tu n’as pas initialisé l’id avant d’associer le tileEntity au TESR, si tu n’écoutes pas ce que l’on te dit, à quoi çà sert de demander de l’aide ?
4. même chose pour le ResourceLocation, regarde les messages précédents pour voir ce qui ne va pas
5. le problème vient tout simplement du fait que createNewTileEntity n’existe pas, le nom de la méthode est createTileEntity, tu l’aurais remarqué si tu avais mis l’annotation @Override au-dessus. Pour éviter ce problème à l’avenir, fait Alt + shift + s puis “override/implement methods” pour voir clairement quelles fonctions existent et lesquelles n’existent pas.Quelques petites choses en plus:
- tu as l’air de développer un mod assez complexe : pense à ne pas tout mettre dans le même package, regarde comment c’est fait dans minecraft pour bien organiser ton mod. Par exemple crée une classe dans lequel sera enregistré tous tes items, une autre pour tous tes blocks, çà évitera d’avoir une classe principale surchargée.
- tu n’as pas utiliser le correcteur de model : http://scarex.fr/model_corrector.php çà rendra le code de ton model plus propre
- ton model est rendu légèrement en dessous du sol, le tuto sur les TESR t’explique comment l’avoir au bon endroit.
-
Merci pour ton aide