Guest User

Untitled

a guest
Aug 6th, 2023
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1.  
  2. Executing Gradle task: build
  3. Build info: MCreator 2023.2.24119, forge-1.19.2, 64-bit, 32693 MB, Windows 10, JVM 17.0.5, JAVA_HOME: C:\Program Files\Pylo\MCreator\jdk, started on: 2023-08-06-22:23:11
  4.  
  5. > Configure project :
  6. The code of this workspace uses official obfuscation mappings provided by Mojang. These mappings fall under their associated license you should be fully aware of.
  7. (c) 2020 Microsoft Corporation. These mappings are provided "as-is" and you bear the risk of using them. You may copy and use the mappings for development purposes,
  8. but you may not redistribute the mappings complete and unmodified. Microsoft makes no warranties, express or implied, with respect to the mappings provided here.
  9. Use and modification of this document or the source code (in any form) of Minecraft: Java Edition is governed by the Minecraft End User License Agreement available
  10. at https://account.mojang.com/documents/minecraft_eula.
  11.  
  12. > Task :compileJava FAILED
  13. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:63: error: cannot find symbol
  14. private final Map<String, Vector3f> queuedBoneSetMovements = new HashMap<>();
  15. ^
  16. symbol: class Vector3f
  17. location: class KingClawItemRenderer
  18. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:64: error: cannot find symbol
  19. private final Map<String, Vector3f> queuedBoneSetRotations = new HashMap<>();
  20. ^
  21. symbol: class Vector3f
  22. location: class KingClawItemRenderer
  23. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:65: error: cannot find symbol
  24. private final Map<String, Vector3f> queuedBoneAddRotations = new HashMap<>();
  25. ^
  26. symbol: class Vector3f
  27. location: class KingClawItemRenderer
  28. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\client\renderer\DirtRenderer.java:30: error: package Vector3f does not exist
  29. poseStack.mulPose(Vector3f.YP.rotationDegrees(Mth.lerp(partialTicks, entityIn.yRotO, entityIn.getYRot()) - 90));
  30. ^
  31. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\client\renderer\DirtRenderer.java:31: error: package Vector3f does not exist
  32. poseStack.mulPose(Vector3f.ZP.rotationDegrees(90 + Mth.lerp(partialTicks, entityIn.xRotO, entityIn.getXRot())));
  33. ^
  34. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:104: warning: [removal] getUniqueID(T) in GeoItemRenderer has been deprecated and marked for removal
  35. public Integer getUniqueID(KingClawItem animatable) {
  36. ^
  37. where T is a type-variable:
  38. T extends Item,IAnimatable declared in class GeoItemRenderer
  39. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:108: warning: [removal] getUniqueID(T) in GeoItemRenderer has been deprecated and marked for removal
  40. return super.getUniqueID(animatable);
  41. ^
  42. where T is a type-variable:
  43. T extends Item,IAnimatable declared in class GeoItemRenderer
  44. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:137: error: cannot find symbol
  45. this.queuedBoneSetMovements.put(name, new Vector3f(x, y, z));
  46. ^
  47. symbol: class Vector3f
  48. location: class KingClawItemRenderer
  49. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:141: error: cannot find symbol
  50. this.queuedBoneAddRotations.put(name, new Vector3f(x, y, z));
  51. ^
  52. symbol: class Vector3f
  53. location: class KingClawItemRenderer
  54. C:\Users\Joel\MCreatorWorkspaces\burrows\src\main\java\net\mcreator\burrows\item\renderer\KingClawItemRenderer.java:145: error: cannot find symbol
  55. this.queuedBoneSetRotations.put(name, new Vector3f(x, y, z));
  56. ^
  57. symbol: class Vector3f
  58. location: class KingClawItemRenderer
  59. 8 errors
  60. 2 warnings
  61. FAILURE: Build failed with an exception.
  62. * What went wrong:
  63. Execution failed for task ':compileJava'.
  64. > Compilation failed; see the compiler error output for details.
  65. * Try:
  66. > Run with --stacktrace option to get the stack trace.
  67. > Run with --info or --debug option to get more log output.
  68. > Run with --scan to get full insights.
  69. * Get more help at https://help.gradle.org
  70. BUILD FAILED in 3s
  71. 1 actionable task: 1 executed
  72.  
  73. BUILD FAILED
  74. Task completed in 5 seconds
Advertisement
Add Comment
Please, Sign In to add comment