Blueprint

Blueprint

87541204 次下载
最近更新9 个月前
实现所有异常模组框架的库! Library that implements the framework of a...

📖 关于:

Blueprint是一个模组库,专为方便访问大多数“异常团队”(Team Abnormals)模组中共享的代码而开发,但任何人都被允许并鼓励使用它!它有许多实用功能,例如注册表助手、数据同步、各种数据驱动的修改系统、生物群系API、修剪材质API、Endimator动画API等等!

💻 对于开发者: 将Blueprint添加到你的模组中相当简单!

首先,你需要将Blueprint作为依赖项添加,以便在代码中访问该库。为此,在你的build.gradle中添加以下内容:

repositories { maven { url = "https://maven.teamabnormals.com" } } dependencies { implementation("com.teamabnormals:blueprint:") }

将 替换为所需的Blueprint版本,包括所需的Minecraft版本。
例如,1.21.1 - 8.0.0将为我们提供blueprint - 1.21.1 - 8.0.0.jar。

接下来,你必须将其作为NeoForge的依赖项添加,以使你的模组在加载时需要Blueprint。在你的neoforge.mods.toml中,将以下代码块添加到文件中:

[[dependencies.]] modId = "blueprint" type = "required" versionRange = "[,)" ordering = "AFTER" side = "BOTH"

将 替换为所需的Blueprint版本。例如,8.0.0将针对Blueprint的8.0.0版本。上述neoforge.mods.toml的代码块针对选定版本及更高版本。如果你想以不同方式指定版本,你可能需要阅读neoforge.mods.toml规范。

📦 “异常团队”的主要模组:

  • Atmospheric
  • Autumnity
  • Buzzier Bees
  • Caverns and Chasms
  • Endergetic Expansion
  • Environmental
  • Neapolitan
  • Savage and Ravage
  • Upgrade Aquatic

🗃️ “异常团队”的次要模组:

  • Abnormals Delight
  • Allurement
  • Berry Good
  • Boatload
  • Clayworks
  • Gallery
  • Incubation
  • Personality
  • Pet Cemetery
  • Woodworks

📖 About:

Blueprint is a mod library developed for easily accessing code shared across most Team Abnormals mods, but anyone is allowed and encouraged to use it! It has many valuable features, such as a registry helper, data syncing, various data-driven modification systems, a biome API, a trim material API, the Endimator animation API, and much more!

💻 For Developers: Adding Blueprint to your mod is quite simple!

First off, you need to add Blueprint as a dependency to access the library in code. To do so, add the following into your build.gradle:

repositories { maven { url = "https://maven.teamabnormals.com" } } dependencies { implementation("com.teamabnormals:blueprint:") }

Replace with the desired version of Blueprint, including the desired version of Minecraft.
For example, 1.21.1-8.0.0 will give us blueprint-1.21.1-8.0.0.jar.

Next, you must add it as a dependency on NeoForge to make your mod require Blueprint when loading. In your neoforge.mods.toml, add the following block to the file:

[[dependencies.]] modId = "blueprint" type = "required" versionRange = "[,)" ordering = "AFTER" side = "BOTH"

Replace with the desired version of Blueprint. For example, 8.0.0 will target version 8.0.0 of Blueprint. The code block above for the neoforge.mods.toml is targeting the version selected and any versions beyond. If you want to target it differently, you may want to read up on the neoforge.mods.toml spec.

📦 Major Mods by Team Abnormals:

  • Atmospheric
  • Autumnity
  • Buzzier Bees
  • Caverns and Chasms
  • Endergetic Expansion
  • Environmental
  • Neapolitan
  • Savage and Ravage
  • Upgrade Aquatic

🗃️ Minor Mods by Team Abnormals:

  • Abnormals Delight
  • Allurement
  • Berry Good
  • Boatload
  • Clayworks
  • Gallery
  • Incubation
  • Personality
  • Pet Cemetery
  • Woodworks

本站是资源分享站,资源均来自于互联网和用户自发分享,仅供学习和交流使用。如有版权问题,请联系管理员删除。

评论区 (0)

登录 后才能发表评论

暂无评论

快来发表第一条评论吧!