But how does it work? #38
-
Hello! I'm looking at learning and using Haxe, but I need a use case, such as continuing my modding in it. I've got a couple of questions before I start though.
Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey there, I greatly appreciate your interest in this project!
Not everything has to utilize
I got Java 21 working, on both Fabric and Forge. See the
PickHaxe defaults to using ParchmentMC, an augmented MojMaps which provides parameter names and JavaDocs, falling back to MojMaps as needed. You can also use
There is still a lot more to do in terms of creating good example projects and properly filling in the gaps, but the place to look is the sample projects, available to download using |
Beta Was this translation helpful? Give feedback.
Hey there, I greatly appreciate your interest in this project!
Not everything has to utilize
extern
s. Haxe automatically generates externs from a JAR for you, and you can view these using the--dump
argument (this creates adump
folder containing the generated files). Sometimes there is an issue, in which case I provide a manual correction by creating a Haxe class definition using theextern
keyword and the@:native
annotation, then redefine the variables and functions from that class.