File tree 2 files changed +6
-4
lines changed
src/main/kotlin/dev/sterner/client/renderer/blockentity
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ loader_version=0.16.3
9
9
fabric_kotlin_version =1.12.1+kotlin.2.0.20
10
10
11
11
# Mod Properties
12
- mod_version =0.1.0
12
+ mod_version =0.1.1
13
13
maven_group =dev.sterner
14
14
archives_base_name =voidbound
15
15
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ import team.lodestar.lodestone.systems.rendering.VFXBuilders
18
18
class SpiritRiftBlockEntityRenderer (ctx : BlockEntityRendererProvider .Context ) :
19
19
BlockEntityRenderer <SpiritRiftBlockEntity > {
20
20
21
+ var renderType = VoidBoundRenderTypes .GRAVITY_VORTEX .apply (TOKEN )
22
+ val copy = LodestoneRenderTypeRegistry .copy(renderType)
23
+ val copy2 = LodestoneRenderTypeRegistry .copy(renderType)
24
+
21
25
override fun render (
22
26
blockEntity : SpiritRiftBlockEntity ,
23
27
partialTick : Float ,
@@ -26,9 +30,7 @@ class SpiritRiftBlockEntityRenderer(ctx: BlockEntityRendererProvider.Context) :
26
30
packedLight : Int ,
27
31
packedOverlay : Int
28
32
) {
29
- var renderType = VoidBoundRenderTypes .GRAVITY_VORTEX .apply (TOKEN )
30
- val copy = LodestoneRenderTypeRegistry .copy(renderType)
31
- val copy2 = LodestoneRenderTypeRegistry .copy(renderType)
33
+
32
34
33
35
var alpha = 0.1f
34
36
You can’t perform that action at this time.
0 commit comments