mirror of
https://github.com/FabricMC/fabric.git
synced 2025-02-18 04:30:30 -05: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
6 lines
145 B
Groovy
6 lines
145 B
Groovy
archivesBaseName = "fabric-screen-api-v1"
|
|
version = getSubprojectVersion(project, "1.0.0")
|
|
|
|
moduleDependencies(project, [
|
|
'fabric-api-base'
|
|
])
|