Skip to content

UselessSolutions/DragonFly

Repository files navigation

DragonFly BTA Model Library

About

DragonFly is a model library which allows other mods made for BTA to use model formats used in modern Minecraft versions. It makes modeling and texturing able to be done through programs like BlockBench making complex models much less daunting to implement.

  • DragonFly also allows texturepacks to change the models of any mod using DragonFly.
  • DragonFly uses HalpLibe for texture registration and for HalpLibe's entrypoints
  • You can look at the DragonFly Example Mod for help using DragonFly in your project

Supported data types:

DragonFly Allows the use of

  • Modern Java Block/Item Models
  • Modern Java Block States
  • Modern Bedrock Entity Geometries
  • Modern Bedrock Entity Animations

Setup

Add to project

  • Add version variable to "gradle.properties" dragonfly_version=1.4.9-7.1
  • Add mod repository to "build.gradle"
ivy {
	mavenCentral()
	maven { url = "https://jitpack.io" }
}
  • Implement mod in "build.gradle" modImplementation 'com.github.UselessSolutions:dragonfly:${project.dragonfly_version}"

Credits:

  • UselessBullets - Block Model Support
  • baguchan - Entity Model Support
  • 0999312 MMLib (Tremendously helpful for Entity Model support)