mirror of
https://github.com/FabricMC/fabric.git
synced 2025-03-15 17:50:32 -04:00
* Implement screen api * Actually update to 20w27a * Split render and tick events to before and after * Rename and update * A bit of javadoc and profiler name fixes * Add functional interface annotations, move render and ticking events to actual FabricScreen instance. * Add after screen resize event * Implement key and mouse click/press and release events. * Move keyboard and mouse events to their own pojos * Init and resize are the same thing. Maybe Screen#init needs a rename * Add mouse scroll events * checkstyle * Refresh event instances after init * Before init is nessecary to listen to addition/removal of child elements * Polish up the javadoc and do a rename to the public api interface. * Mappings updates on testmod * javadoc formatting again * Rework screen api design to be more ergonomic. * Add remove event, some javadoc * Add allow phase * Module dependencies * Fix null ticking when no screen is open * Refer to GLFW constants in mouse click/release events * Keyboard event GLFW constant javadoc * Remove redundant qualifier * Some docs, degetterifying * Because global go brr add screen params back around * Add module lifecycle to FMJ
57 lines
1.6 KiB
Groovy
57 lines
1.6 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
jcenter()
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = 'Fabric'
|
|
url = 'https://maven.fabricmc.net/'
|
|
}
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "fabric-api"
|
|
|
|
include 'fabric-api-base'
|
|
|
|
include 'fabric-biome-api-v1'
|
|
include 'fabric-blockrenderlayer-v1'
|
|
include 'fabric-commands-v0'
|
|
include 'fabric-command-api-v1'
|
|
include 'fabric-containers-v0'
|
|
include 'fabric-content-registries-v0'
|
|
include 'fabric-crash-report-info-v1'
|
|
include 'fabric-dimensions-v1'
|
|
include 'fabric-entity-events-v1'
|
|
include 'fabric-events-interaction-v0'
|
|
include 'fabric-events-lifecycle-v0'
|
|
include 'fabric-game-rule-api-v1'
|
|
include 'fabric-item-api-v1'
|
|
include 'fabric-item-groups-v0'
|
|
include 'fabric-keybindings-v0'
|
|
include 'fabric-key-binding-api-v1'
|
|
include 'fabric-lifecycle-events-v1'
|
|
include 'fabric-loot-tables-v1'
|
|
include 'fabric-mining-levels-v0'
|
|
include 'fabric-models-v0'
|
|
include 'fabric-networking-v0'
|
|
include 'fabric-networking-api-v1'
|
|
include 'fabric-networking-blockentity-v0'
|
|
include 'fabric-object-builder-api-v1'
|
|
include 'fabric-object-builders-v0'
|
|
include 'fabric-particles-v1'
|
|
include 'fabric-registry-sync-v0'
|
|
include 'fabric-renderer-api-v1'
|
|
include 'fabric-renderer-indigo'
|
|
include 'fabric-renderer-registries-v1'
|
|
include 'fabric-rendering-v0'
|
|
include 'fabric-rendering-v1'
|
|
include 'fabric-rendering-data-attachment-v1'
|
|
include 'fabric-rendering-fluids-v1'
|
|
include 'fabric-resource-loader-v0'
|
|
include 'fabric-screen-api-v1'
|
|
include 'fabric-screen-handler-api-v1'
|
|
include 'fabric-structure-api-v1'
|
|
include 'fabric-tag-extensions-v0'
|
|
include 'fabric-textures-v0'
|
|
include 'fabric-tool-attribute-api-v1'
|