本文整理匯總了Java中net.minecraft.util.text.TextFormatting.WHITE屬性的典型用法代碼示例。如果您正苦於以下問題:Java TextFormatting.WHITE屬性的具體用法?Java TextFormatting.WHITE怎麽用?Java TextFormatting.WHITE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類net.minecraft.util.text.TextFormatting
的用法示例。
在下文中一共展示了TextFormatting.WHITE屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getTranslatedString
public String getTranslatedString(float value, boolean withColor) {
String valueStr = String.valueOf(value);
if (this.typeOfValue == Type.PERCENTAGE)
valueStr = Integer.toString(Math.round((value - 1) * 100)) + "%";
else if (this.typeOfValue == Type.INVERTED_PERCENTAGE)
valueStr = Integer.toString(Math.round((1 - value) * 100)) + "%";
else if (this.typeOfValue == Type.ADDITIVE)
valueStr = Integer.toString(Math.round(value));
if (withColor) {
TextFormatting color = this.state == State.POSITIVE ? TextFormatting.AQUA
: (this.state == State.NEGATIVE ? TextFormatting.RED : TextFormatting.WHITE);
return color + I18n.format("weaponAttribute." + this.name, new Object[] { valueStr });
} else
return I18n.format("weaponAttribute." + this.name, new Object[] { valueStr });
}
示例2: ItemBase
public ItemBase(String name)
{
this(name, 0, TextFormatting.WHITE);
}
示例3: ItemEnum
public ItemEnum(String name, E[] values)
{
this(name, values, TextFormatting.WHITE);
}