promotional bannermobile promotional banner
premium banner
A development library mod to help easily create flying mounts.

Description

A library I plan to use to create mods featuring flying mounts. This allows easier creation of mounts based on AbstractHorseEntity with flight controls already created based on creative flight.This is my first library mod so I'd love feedback from other devs on how to adjust it. I fear some it may be messy from my adventures on google trying to get stuff working.

See my demo/test project for an example:
https://github.com/Altias/flying-mount-demo-1.21.1

And here's a video showing that demo:

You can add this as a dependancy through my GitHub package. You will need to add this to your build.gradle under repositories:

maven {
		url = uri("https://maven.pkg.github.com/Altias/flying-mount-library")
		credentials {
			username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
			password = project.findProperty("gpr.token") ?: System.getenv("GITHUB_TOKEN")
		}
	}

You will need to set up your own github credientials. 

And then add this line in your depenencies:

modImplementation "net.altias:flying-mount-library:1.0.0"

Or you can just download the jar and use that as a dependancy.