-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix bloom particles become black when entity is killed by player
update architectury, forge, gradle, embeddium, sodium, fabric loader versions
- Loading branch information
Showing
14 changed files
with
109 additions
and
63 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
Common/src/main/java/com/lowdragmc/shimmer/core/mixins/LightTextureAccessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.lowdragmc.shimmer.core.mixins; | ||
|
||
import net.minecraft.client.renderer.LightTexture; | ||
import net.minecraft.client.renderer.texture.DynamicTexture; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.gen.Accessor; | ||
|
||
@Mixin(LightTexture.class) | ||
public interface LightTextureAccessor { | ||
@Accessor | ||
DynamicTexture getLightTexture(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
{ | ||
"required": true, | ||
"minVersion": "0.8", | ||
"package": "com.lowdragmc.shimmer.core.mixins", | ||
"compatibilityLevel": "JAVA_17", | ||
"plugin": "com.lowdragmc.shimmer.core.mixins.ShimmerMixinPlugin", | ||
"client": [ | ||
"BlendModeMixin", | ||
"BlockLightEngineMixin", | ||
"GameRendererMixin", | ||
"GLStateManagerMixin", | ||
"HumanoidArmorLayerMixin", | ||
"LevelRendererMixin", | ||
"LiquidBlockRendererMixin", | ||
"MainTargetMixin", | ||
"ModelBlockRendererMixin", | ||
"ParticleDescriptionMixin", | ||
"PostChainMixin", | ||
"PostPassMixin", | ||
"ProgramMixin", | ||
"RebuildTaskMixin", | ||
"RenderChunkMixin", | ||
"RenderTargetMixin", | ||
"ShaderInstanceGlslProcessorMixin" | ||
], | ||
"mixins": [ | ||
|
||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
"required": true, | ||
"minVersion": "0.8", | ||
"package": "com.lowdragmc.shimmer.core.mixins", | ||
"compatibilityLevel": "JAVA_17", | ||
"plugin": "com.lowdragmc.shimmer.core.mixins.ShimmerMixinPlugin", | ||
"client": [ | ||
"BlendModeMixin", | ||
"BlockLightEngineMixin", | ||
"GameRendererMixin", | ||
"GLStateManagerMixin", | ||
"HumanoidArmorLayerMixin", | ||
"LevelRendererMixin", | ||
"LightTextureAccessor", | ||
"LiquidBlockRendererMixin", | ||
"MainTargetMixin", | ||
"ModelBlockRendererMixin", | ||
"ParticleDescriptionMixin", | ||
"PostChainMixin", | ||
"PostPassMixin", | ||
"ProgramMixin", | ||
"RebuildTaskMixin", | ||
"RenderChunkMixin", | ||
"RenderTargetMixin", | ||
"ShaderInstanceGlslProcessorMixin" | ||
], | ||
"mixins": [ | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#Tue Jun 18 17:31:20 GMT+08:00 2024 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters