当前位置: 首页>>代码示例>>Java>>正文


Java GuiNewChat.printChatMessage方法代码示例

本文整理汇总了Java中net.minecraft.client.gui.GuiNewChat.printChatMessage方法的典型用法代码示例。如果您正苦于以下问题:Java GuiNewChat.printChatMessage方法的具体用法?Java GuiNewChat.printChatMessage怎么用?Java GuiNewChat.printChatMessage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在net.minecraft.client.gui.GuiNewChat的用法示例。


在下文中一共展示了GuiNewChat.printChatMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: dumpError

import net.minecraft.client.gui.GuiNewChat; //导入方法依赖的package包/类
private synchronized void dumpError(String tag) {
    state = new State(TextFormatting.RED
            + I18n.format("enchantmentrevealer.error.mainmessage"), NO_STRINGS, NO_INTS,
            observations.get(observations.size() - 1));
    GuiNewChat chat = Minecraft.getMinecraft().ingameGUI.getChatGUI();
    chat.printChatMessage(new TextComponentTranslation("enchantmentrevealer.error.part1",
            new TextComponentTranslation("enchantmentrevealer.error." + tag), "d0sboots",
            "gmai", "l.com").setStyle(new Style().setColor(TextFormatting.RED)
            .setBold(true)));
    chat.printChatMessage(new TextComponentTranslation("enchantmentrevealer.error.part2")
            .setStyle(new Style().setColor(TextFormatting.YELLOW)));
    for (Observation observation : observations) {
        chat.printChatMessage(new TextComponentString(observation.toString())
                .setStyle(new Style().setColor(TextFormatting.YELLOW)));
    }
    observations.clear();
    candidatesLength = 0;
    thread = null;
    shrink();
}
 
开发者ID:d0sboots,项目名称:EnchantmentRevealer,代码行数:21,代码来源:EnchantmentWorker.java

示例2: print

import net.minecraft.client.gui.GuiNewChat; //导入方法依赖的package包/类
public static void print(String msg, TextFormatting format, Object... args) {
    if (MC.ingameGUI == null) {
        return;
    }

    GuiNewChat chat = MC.ingameGUI.getChatGUI();
    TextComponentTranslation ret = new TextComponentTranslation(msg, args);
    ret.getStyle().setColor(format);

    chat.printChatMessage(ret);
}
 
开发者ID:ata4,项目名称:minema,代码行数:12,代码来源:ChatUtils.java


注:本文中的net.minecraft.client.gui.GuiNewChat.printChatMessage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。