fabric/fabric-particles-v1/build.gradle
Juuz 86d48884d3 Add event for preventing particle tinting for colored blocks (#3146)
- 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>
2023-07-03 13:19:38 +01:00

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"
}