Custom projectile entity | error: package Axis does not exist

Started by Ferryboo on

Topic category: Help with modding (Java Edition)

Last seen on 20:29, 23. Jul 2023
Joined Oct 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Custom projectile entity | error: package Axis does not exist

For some reason it can't compile

Last seen on 20:29, 23. Jul 2023
Joined Oct 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
i'd like to add that I've…
Thu, 06/22/2023 - 14:21

i'd like to add that I've already checked the knowledge base and how to solve the issue, but even though I've done everything in the guide it still doesn't work

This is bug of the geckolib…
Thu, 06/22/2023 - 15:48

This is bug of the geckolib plugin.

When using plugins, first make sure things work well without them. Then report issue to the plugin authors

Last seen on 03:47, 12. Jan 2024
Joined Oct 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I solved that problem this…
Thu, 08/17/2023 - 22:22

I solved that problem this way


Lock that element and open element code editer 

click "(element name) Randerer.java"

and  find
  import com.mojang.blaze3d.vertex.VertexConsumer;

  import com.mojang.blaze3d.vertex.PoseStack;

and just add

import com.mojang.math.Axis;

on
  import com.mojang.blaze3d.vertex.VertexConsumer;


  import com.mojang.blaze3d.vertex.PoseStack;
 

if you done save code and Regenerate

it's done

I hope you solve that problem. Good luck