feat: Add dev capes

This commit is contained in:
Linnea Gräf
2025-06-23 13:34:02 +02:00
parent 72b8d8c8a3
commit 051668fe9a
13 changed files with 347 additions and 3 deletions

View File

@@ -49,6 +49,15 @@ object CustomRenderPipelines {
.withFragmentShader(Firmament.identifier("circle_discard_color"))
.withBlend(BlendFunction.TRANSLUCENT)
.build()
val PARALLAX_CAPE_SHADER =
RenderPipeline.builder(RenderPipelines.ENTITY_SNIPPET)
.withLocation(Firmament.identifier("parallax_cape"))
.withFragmentShader(Firmament.identifier("cape/parallax"))
.withSampler("Sampler0")
.withSampler("Sampler1")
.withSampler("Sampler3")
.withUniform("Animation", UniformType.FLOAT)
.build()
}
object CustomRenderLayers {