Class EventWorldRender

java.lang.Object
dev.boze.api.event.EventWorldRender

public class EventWorldRender extends Object
EventWorldRender

Called on world render, used for 3D rendering

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    net.minecraft.client.render.Camera
     
    3D Drawer instance
    net.minecraft.client.util.math.MatrixStack
     
    float
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    get(Drawer3D drawer, net.minecraft.client.util.math.MatrixStack matrices, net.minecraft.client.render.Camera camera, float tickDelta)
    Get the event instance - this is called onm world render by Boze, and should not be called by addons

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • drawer

      public Drawer3D drawer
      3D Drawer instance
    • matrices

      public net.minecraft.client.util.math.MatrixStack matrices
    • camera

      public net.minecraft.client.render.Camera camera
    • tickDelta

      public float tickDelta
  • Constructor Details

    • EventWorldRender

      public EventWorldRender()
  • Method Details

    • get

      public static EventWorldRender get(Drawer3D drawer, net.minecraft.client.util.math.MatrixStack matrices, net.minecraft.client.render.Camera camera, float tickDelta)
      Get the event instance - this is called onm world render by Boze, and should not be called by addons
      Parameters:
      drawer - 3D Drawer
      matrices - MatrixStack
      camera - Camera
      tickDelta - Tick delta
      Returns:
      The event instance