GuiProfilerChartRenderState.java

net.minecraft.client.renderer.state.gui.pip.GuiProfilerChartRenderState

信息

  • 全限定名:net.minecraft.client.renderer.state.gui.pip.GuiProfilerChartRenderState
  • 类型:public record
  • 包:net.minecraft.client.renderer.state.gui.pip
  • 源码路径:src/main/java/net/minecraft/client/renderer/state/gui/pip/GuiProfilerChartRenderState.java
  • 起始行号:L11
  • 实现:PictureInPictureRenderState
  • 职责:

    TODO

字段/常量

内部类/嵌套类型

构造器

public GuiProfilerChartRenderState(List<ResultField> chartData, int x0, int y0, int x1, int y1, ScreenRectangle scissorArea) @ L14

  • 构造器名:GuiProfilerChartRenderState
  • 源码定位:L14
  • 修饰符:public

参数:

  • chartData: List
  • x0: int
  • y0: int
  • x1: int
  • y1: int
  • scissorArea: ScreenRectangle

说明:

TODO

方法

下面的方法块按源码顺序生成。

public float scale() @ L18

  • 方法名:scale
  • 源码定位:L18
  • 返回类型:float
  • 修饰符:public

参数:

说明:

TODO

代码

@OnlyIn(Dist.CLIENT)
public record GuiProfilerChartRenderState(
    List<ResultField> chartData, int x0, int y0, int x1, int y1, @Nullable ScreenRectangle scissorArea, @Nullable ScreenRectangle bounds
) implements PictureInPictureRenderState {
    public GuiProfilerChartRenderState(List<ResultField> chartData, int x0, int y0, int x1, int y1, @Nullable ScreenRectangle scissorArea) {
        this(chartData, x0, y0, x1, y1, scissorArea, PictureInPictureRenderState.getBounds(x0, y0, x1, y1, scissorArea));
    }
 
    @Override
    public float scale() {
        return 1.0F;
    }
}

引用的其他类