EffectGlyph.java

net.minecraft.client.gui.font.glyphs.EffectGlyph

信息

  • 全限定名:net.minecraft.client.gui.font.glyphs.EffectGlyph
  • 类型:public interface
  • 包:net.minecraft.client.gui.font.glyphs
  • 源码路径:src/main/java/net/minecraft/client/gui/font/glyphs/EffectGlyph.java
  • 起始行号:L8
  • 职责:

    TODO

字段/常量

内部类/嵌套类型

构造器

方法

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

TextRenderable createEffect(float x0, float y0, float x1, float y1, float depth, int color, int shadowColor, float shadowOffset) @ L9

  • 方法名:createEffect
  • 源码定位:L9
  • 返回类型:TextRenderable
  • 修饰符:package-private

参数:

  • x0: float
  • y0: float
  • x1: float
  • y1: float
  • depth: float
  • color: int
  • shadowColor: int
  • shadowOffset: float

说明:

TODO

代码

@OnlyIn(Dist.CLIENT)
public interface EffectGlyph {
    TextRenderable createEffect(float x0, float y0, float x1, float y1, float depth, int color, int shadowColor, float shadowOffset);
}

引用的其他类