aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/dulkirfabric/features
diff options
context:
space:
mode:
authoringlettronald <inglettronald@gmail.com>2023-07-18 12:27:13 -0500
committeringlettronald <inglettronald@gmail.com>2023-07-18 12:27:13 -0500
commit053db047a053cfa4b510d872802434a922275326 (patch)
tree799e113dcc22c85432ef355d5919ebb0f61a36f9 /src/main/kotlin/com/dulkirfabric/features
parent9cd4efc009d45dd671908e8cdc3477aaf14550e6 (diff)
downloadDulkirMod-Fabric-053db047a053cfa4b510d872802434a922275326.tar.gz
DulkirMod-Fabric-053db047a053cfa4b510d872802434a922275326.tar.bz2
DulkirMod-Fabric-053db047a053cfa4b510d872802434a922275326.zip
More Entity/Animation fixes
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/features')
-rw-r--r--src/main/kotlin/com/dulkirfabric/features/RenderTest.kt6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt b/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt
index 7b6c5e6..8d941d1 100644
--- a/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt
+++ b/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt
@@ -2,14 +2,12 @@ package com.dulkirfabric.features
import com.dulkirfabric.events.EntityLoadEvent
import com.dulkirfabric.events.WorldRenderLastEvent
-import com.dulkirfabric.util.GlowingEntityInterface
import com.dulkirfabric.util.WorldRenderUtils
import meteordevelopment.orbit.EventHandler
import net.minecraft.text.Style
import net.minecraft.text.Text
import net.minecraft.util.math.Vec3d
import java.awt.Color
-import kotlin.random.Random
object RenderTest {
@@ -28,7 +26,7 @@ object RenderTest {
@EventHandler
fun onLoadEnt(event: EntityLoadEvent) {
- if (event.entity !is GlowingEntityInterface) return
- event.entity.setDulkirEntityGlow(true, Color(255, 255, 255, 255), Random(event.entity.id).nextBoolean())
+// if (event.entity !is GlowingEntityInterface) return
+// event.entity.setDulkirEntityGlow(true, Color(255, 255, 255, 255),false)
}
} \ No newline at end of file