#Axiomclientapi Fabric Loader Errors
1 messages · Page 1 of 1 (latest)
which minecraft version is this?
1.20.1
trying to run this https://github.com/Moulberry/AxiomClientAPIExample/
have both of the mods here in the folder
Don't know if I'm doing something stupid or not bc it's not even an issue with the client api
You probably gotta include mixinextras manually
It's included by fabric in newer versions, but not 1.20.1
include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.3.5"))) should work
@narrow walrus sent a log,
I've tried updating the fabric loader version in gradle.properties but then I get even more errors ðŸ˜
I mean yeah that's what developing for a multiple year old version will get you
1.20 is nearly 3 years old
Would it be easier to try and run the example mod on a newer version instead?
Perhaps
Got everything working on a newer version
~~What's your way of doing separatorText with ImGui? there doesn't seem to be a method listed but I see other addons using it ~~ figured this out
Is there a way to get access to all of the com.moulberry.axiom.tools.Tool methods like iconChar and initiateAdjustment? Or would I need to use mixins
I can implement the Tool class but since the tool isn't getting registered in the normal way like the other built in tools, the methods don't seem to do anything
If you want to use internal stuff you have to register it with mixins or whatever
I see