Kai-Z-JP / MinFo

MinFo Is not Normal FOntrenderer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MinFo

MinFo Is not Normal FOntrenderer

これはなに?

TTFファイルまたはフォント名から専用FontRendererを生成するAPIです。 サーバー側への導入は必要ありません。

動作確認済み環境

  • Minecraft 1.7.10
  • Forge 10.13.4.1614
  • Windows 11 build 22000.258

使用例

JavaScript

importPackage(Packages.jp.kaiz.minfo.api)

var fontRenderer = null;

function getFontRenderer() {
//フォント名指定の場合 TTFファイル指定の場合はResourceLocationを第一引数へ
    return fontRenderer == null ? fontRenderer = new MinFoCustomFontRenderer("Meiryo UI", 32) : fontRenderer;
}

///renderの一番最後に突っ込む
function renderFont(entity, pass, par3) {
    GL11.glPushMatrix();
    getFontRenderer().func_78276_b("テスト", 0, 0, 0xFFFFFF);
    GL11.glPopMatrix();
}

About

MinFo Is not Normal FOntrenderer

License:MIT License


Languages

Language:Java 100.0%