#Axiomclientapi Fabric Loader Errors

1 messages · Page 1 of 1 (latest)

sullen krakenBOT
#

@narrow walrus uploaded a log,

trail geode
#

which minecraft version is this?

narrow walrus
#

1.20.1

#

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

desert dawn
#

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

sullen krakenBOT
#

@narrow walrus sent a log,

narrow walrus
#

I've tried updating the fabric loader version in gradle.properties but then I get even more errors 😭

desert dawn
#

I mean yeah that's what developing for a multiple year old version will get you

#

1.20 is nearly 3 years old

narrow walrus
#

Would it be easier to try and run the example mod on a newer version instead?

desert dawn
#

Perhaps

narrow walrus
#

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

narrow walrus
#

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

desert dawn
#

If you want to use internal stuff you have to register it with mixins or whatever

narrow walrus
#

I see