From b8d53d66085c827853325d399e16b85ca4758520 Mon Sep 17 00:00:00 2001 From: nea Date: Sun, 23 Jul 2023 17:39:47 +0200 Subject: Use string map for positions --- src/main/kotlin/com/dulkirfabric/features/RenderTest.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main/kotlin/com/dulkirfabric/features') diff --git a/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt b/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt index e139ad0..3442f8a 100644 --- a/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt +++ b/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt @@ -7,6 +7,7 @@ import com.dulkirfabric.events.HudRenderEvent import com.dulkirfabric.events.WorldRenderLastEvent import com.dulkirfabric.util.render.WorldRenderUtils import meteordevelopment.orbit.EventHandler +import moe.nea.jarvis.api.Point import net.minecraft.text.Style import net.minecraft.text.Text import net.minecraft.util.math.Vec3d @@ -34,12 +35,14 @@ object RenderTest { //event.entity.setDulkirEntityGlow(true, Color(0, 0, 255, 255),false) } + val fooHud = DulkirConfig.hudElement("foobar", Text.literal("Text"), 200, 10, Point(0.4, 0.4)) + @EventHandler fun onRenderHud(event: HudRenderEvent) { val context = event.context val matrices = context.matrices matrices.push() - DulkirConfig.fooHudElement.applyTransformations(matrices) + fooHud.applyTransformations(matrices) context.drawText(mc.textRenderer, Text.literal("ยง6This is the actual element."),0, 0, -1, true) matrices.pop() } -- cgit