Essential hooks for modding with Fabric.
Find a file
2023-04-23 13:21:39 +01:00
.github Update to Loom 1.2 and Gradle 8.1 () 2023-04-23 13:02:02 +01:00
deprecated 23w04a 2023-01-24 16:59:43 +00:00
fabric-api-base Fix build 2023-02-15 20:15:06 +00:00
fabric-api-lookup-api-v1
fabric-biome-api-v1 Fixed end biome source injection () 2023-03-15 09:13:42 +00:00
fabric-block-api-v1
fabric-blockrenderlayer-v1 Fix : deprecate item functions in BlockRenderLayerMap () 2023-02-24 09:50:39 +00:00
fabric-client-tags-api-v1 Remove leftover @ApiStatus.Internal annotations and add annotation validation () 2023-01-05 12:50:15 +00:00
fabric-command-api-v2 Add missing error message argument in ClientCommandInternals() 2023-04-11 09:49:33 +01:00
fabric-content-registries-v0 Fix all valid Mixin AP warnings. () 2023-02-22 12:54:50 +00:00
fabric-convention-tags-v1 Add 'Windswept Hills' biome convention tag () 2023-03-15 09:36:09 +00:00
fabric-crash-report-info-v1
fabric-data-generation-api-v1 Make custom ingredient types and load conditions appear early in generated JSONs () 2023-04-23 13:02:58 +01:00
fabric-dimensions-v1 Fix cannot load world after uninstalling dimension mod/datapack without breaking world presets. () 2023-02-13 09:33:51 +00:00
fabric-entity-events-v1 23w07a 2023-02-15 19:54:58 +00:00
fabric-events-interaction-v0 23w04a 2023-01-24 16:59:43 +00:00
fabric-game-rule-api-v1 23w04a 2023-01-24 16:59:43 +00:00
fabric-gametest-api-v1 Fix all valid Mixin AP warnings. () 2023-02-22 12:54:50 +00:00
fabric-item-api-v1 EquipmentSlotProvider: Add javadoc link to getPreferredEquipmentSlot () 2023-03-15 09:14:00 +00:00
fabric-item-group-api-v1 Tatar Translation for Fabric API. () 2023-03-15 10:33:10 +00:00
fabric-key-binding-api-v1 [1.19.4] Fail hard when unable to register key bindings, and update Loader. () 2023-02-04 14:17:31 +00:00
fabric-lifecycle-events-v1 1.19.4-pre1 2023-02-22 19:56:50 +00:00
fabric-loot-api-v2
fabric-message-api-v1 Added Client Message Events () 2023-02-23 10:15:16 +00:00
fabric-mining-level-api-v1
fabric-models-v0
fabric-networking-api-v1 Networking: introduce packet-object based API 2023-04-04 12:55:12 +01:00
fabric-object-builder-api-v1 BlockSetTypeRegistry and WoodTypeRegistry () 2023-02-22 12:54:42 +00:00
fabric-particles-v1
fabric-recipe-api-v1 23w04a 2023-01-24 16:59:43 +00:00
fabric-registry-sync-v0 Improve missing local registry entries error message. () 2023-04-23 13:21:39 +01:00
fabric-renderer-api-v1 Indigo shade related fixes and other changes () 2023-02-23 10:15:13 +00:00
fabric-renderer-indigo Indigo shade related fixes and other changes () 2023-02-23 10:15:13 +00:00
fabric-rendering-data-attachment-v1
fabric-rendering-fluids-v1
fabric-rendering-v1 Add registry for core shaders in custom namespaces () 2023-03-15 09:16:02 +00:00
fabric-resource-conditions-api-v1 Resource Conditions Additions () 2023-02-13 09:33:49 +00:00
fabric-resource-loader-v0 Fix FabricWrappedVanillaResourcePack::getName () 2023-04-11 09:49:50 +01:00
fabric-screen-api-v1 Fix some ScreenEvents not being called after resizing the window. 2023-03-07 16:15:00 +00:00
fabric-screen-handler-api-v1 1.19.4-pre1 2023-02-22 19:56:50 +00:00
fabric-sound-api-v1
fabric-transfer-api-v1 Fix : ComposterWrapper not always increasing on first insert () 2023-04-23 13:03:12 +01:00
fabric-transitive-access-wideners-v1 BlockSetTypeRegistry and WoodTypeRegistry () 2023-02-22 12:54:42 +00:00
gradle Update to Loom 1.2 and Gradle 8.1 () 2023-04-23 13:02:02 +01:00
src Update to Loom 1.2 and Gradle 8.1 () 2023-04-23 13:02:02 +01:00
.editorconfig
.gitattributes
.gitignore
build.gradle Update to Loom 1.2 and Gradle 8.1 () 2023-04-23 13:02:02 +01:00
checkstyle.xml
CONTRIBUTING.md
gradle.properties Update to Loom 1.2 and Gradle 8.1 () 2023-04-23 13:02:02 +01:00
gradlew Update to Loom 1.2 and Gradle 8.1 () 2023-04-23 13:02:02 +01:00
gradlew.bat Update to Loom 1.2 and Gradle 8.1 () 2023-04-23 13:02:02 +01:00
HEADER
LICENSE
README.md
settings.gradle

Fabric API

Essential hooks for modding with Fabric.

Fabric API is the library for essential hooks and interoperability mechanisms for Fabric mods. Examples include:

  • Exposing functionality that is useful but difficult to access for many mods such as particles, biomes and dimensions
  • Adding events, hooks and APIs to improve interopability between mods.
  • Essential features such as registry synchronization and adding information to crash reports.
  • An advanced rendering API designed for compatibility with optimization mods and graphics overhaul mods.

Also check out Fabric Loader, the (mostly) version-independent mod loader that powers Fabric. Fabric API is a mod like any other Fabric mod which requires Fabric Loader to be installed.

For support and discussion for both developers and users, visit the Fabric Discord server.

Using Fabric API to play with mods

Make sure you have install fabric loader first. More information about installing Fabric Loader can be found here.

To use Fabric API, download it from CurseForge, GitHub Releases or Modrinth.

The downloaded jar file should be placed in your mods folder.

Using Fabric API to develop mods

To setup a Fabric development environment, check out the Fabric example mod and follow the instructions there. The example mod already depends on Fabric API.

To include the full Fabric API with all modules in the development environment, add the following to your dependencies block in the gradle buildscript:

Groovy DSL

modImplementation "net.fabricmc.fabric-api:fabric-api:FABRIC_API_VERSION"

Kotlin DSL

modImplementation("net.fabricmc.fabric-api:fabric-api:FABRIC_API_VERSION")

Alternatively, modules from Fabric API can be specified individually as shown below (including module jar to your mod jar):

Groovy DSL

// Make a collection of all api modules we wish to use
Set<String> apiModules = [
    "fabric-api-base",
    "fabric-command-api-v1",
    "fabric-lifecycle-events-v1",
    "fabric-networking-api-v1"
]

// Add each module as a dependency
apiModules.forEach {
    include(modImplementation(fabricApi.module(it, FABRIC_API_VERSION)))
}

Kotlin DSL

// Make a set of all api modules we wish to use
setOf(
    "fabric-api-base",
    "fabric-command-api-v1",
    "fabric-lifecycle-events-v1",
    "fabric-networking-api-v1"
).forEach {
    // Add each module as a dependency
    modImplementation(fabricApi.module(it, FABRIC_API_VERSION))
}

Instead of hardcoding version constants all over the build script, Gradle properties may be used to replace these constants. Properties are defined in the gradle.properties file at the root of a project. More information is available here.

Contributing

See something Fabric API doesn't support, a bug or something that may be useful? We welcome contributions to improve Fabric API. Make sure to read the development guidelines.

Modules

Fabric API is designed to be modular for ease of updating. This also has the advantage of splitting up the codebase into smaller chunks.

Each module contains its own README.md* explaining the module's purpose and additional info on using the module.

* The README for each module is being worked on; not every module has a README at the moment