Links
Tags
Creators
Details
1.0.0
Compatibility
Required content
Changes
1.0.0 Initial release
- Dynamic Lighting for Contraptions:
- Automatically generate light blocks[^1] when Contraptions move. When Contraptions move, light blocks are dynamically placed and removed.
- Integration with LambDynamicLights:
- Create and update light sources for LambDynamicLights mod in real-time as Contraptions move, allowing for smoother and more immersive lighting transitions.
[^1]Light Block: A Light Block in Minecraft is a special block that emits light. It is invisible and intangible, meaning it doesn't obstruct movement or building, and is typically used to provide lighting in areas where visible light sources like torches or lamps are not desired. The difference between a Light Block and Dynamic Light created by mods like LambDynamicLights is that Light Blocks are actual blocks in the game world and can affect the environment, such as melting ice or snow, preventing mob spawning, etc.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:evMQRxqV:6g7WoVaN"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:evMQRxqV:6g7WoVaN"
}


