Class EventHudRender

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

public class EventHudRender extends Object
Event called when the HUD is being rendered

Used for 2D rendering

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    net.minecraft.client.gui.DrawContext
    The current draw context
    float
    The current tick delta
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    get(net.minecraft.client.gui.DrawContext context, float tickDelta)
    Gets the event instance - this is called when the HUD is being rendered 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

    • context

      public net.minecraft.client.gui.DrawContext context
      The current draw context
    • tickDelta

      public float tickDelta
      The current tick delta
  • Constructor Details

    • EventHudRender

      public EventHudRender()
  • Method Details

    • get

      public static EventHudRender get(net.minecraft.client.gui.DrawContext context, float tickDelta)
      Gets the event instance - this is called when the HUD is being rendered by Boze, and should not be called by addons
      Parameters:
      context - The current draw context
      tickDelta - The current tick delta
      Returns:
      The event instance