mirror of
https://github.com/FabricMC/fabric.git
synced 2024-12-12 09:11:11 -05:00
86d48884d3
- Adds an event, `ParticleRenderEvents.ALLOW_BLOCK_DUST_TINT`, that checks if a block dust particle of a specific block can be tinted. - Bumps Fabric Loader requirement of fabric-particles-v1 to latest to disable Loader's mixin compatibility mode that ignores slices for certain At annotations. Signed-off-by: modmuss50 <modmuss50@gmail.com>
19 lines
483 B
Groovy
19 lines
483 B
Groovy
archivesBaseName = "fabric-particles-v1"
|
|
version = getSubprojectVersion(project)
|
|
|
|
loom {
|
|
accessWidenerPath = file("src/main/resources/fabric-particles-v1.accesswidener")
|
|
}
|
|
|
|
moduleDependencies(project, ['fabric-api-base'])
|
|
|
|
testDependencies(project, [
|
|
':fabric-command-api-v2',
|
|
':fabric-rendering-v1',
|
|
':fabric-resource-loader-v0'
|
|
])
|
|
|
|
validateMixinNames {
|
|
// Loom needs to handle inner mixins better
|
|
exclude "**/ParticleManagerAccessor\$SimpleSpriteProviderAccessor.class"
|
|
}
|