Skip to content

Commit

Permalink
Fixed imports in SimonSays
Browse files Browse the repository at this point in the history
  • Loading branch information
odtheking committed Dec 7, 2024
1 parent 9facbe5 commit 1ffffbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package me.odin.features.impl.floor7.p3

import com.github.stivais.ui.color.Color
import com.github.stivais.ui.color.withAlpha
import com.github.stivais.aurora.color.Color
import com.github.stivais.aurora.utils.withAlpha
import me.odinmain.events.impl.BlockChangeEvent
import me.odinmain.events.impl.PostEntityMetadata
import me.odinmain.features.Module
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/me/odinmain/utils/render/RenderUtils2D.kt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ object RenderUtils2D {

fun drawNameTag(vec3: Vec3, name: String, color: Color) {
worldToScreenPosition(vec3)?.let { pos ->
NVGRenderer.text(name, pos.xCoord.toFloat(), pos.yCoord.toFloat(), 1f, color.rgba, mcFont)
//NVGRenderer.text(name, pos.xCoord.toFloat(), pos.yCoord.toFloat(), 1f, color.rgba, mcFont)
}
}

Expand Down

0 comments on commit 1ffffbb

Please sign in to comment.