本文整理汇总了Java中net.minecraftforge.common.config.Property.getIntList方法的典型用法代码示例。如果您正苦于以下问题:Java Property.getIntList方法的具体用法?Java Property.getIntList怎么用?Java Property.getIntList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraftforge.common.config.Property
的用法示例。
在下文中一共展示了Property.getIntList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: registerFeature
import net.minecraftforge.common.config.Property; //导入方法依赖的package包/类
public static void registerFeature(String name, int[] base) {
String catName = "feature" + Configuration.CATEGORY_SPLITTER + name;
Property property = configWorldGen.get(catName, "Generate", true);
property.setComment("Generate " + name + " in world");
if (!property.getBoolean(true)) {
features.put(name, FALSE);
logWarn("Feature '" + name + "' is disabled");
} else {
property = configWorldGen.get(catName, "Blacklist dimenstions", base);
List<Integer> list = new ArrayList<>();
int[] intArray = property.getIntList();
for (int i = 0;i < intArray.length;i++)
list.add(intArray[i]);
features.put(name, w -> !list.contains(w.provider.getDimension()));
}
}
示例2: getTierBasedIntList
import net.minecraftforge.common.config.Property; //导入方法依赖的package包/类
private static int[] getTierBasedIntList(Configuration cfg, String name, String category, int[] def, String comment) {
Property prop = cfg.get(category, name, def, comment);
int[] ret = prop.getIntList();
if(ret == null || ret.length < 3) {
ret = def;
prop.set(ret);
}
return ret;
}
示例3: getIntArray
import net.minecraftforge.common.config.Property; //导入方法依赖的package包/类
private static int[] getIntArray(String name, String category, int[] defaultValue, String comment)
{
Property prop = config.get(category, name, defaultValue, comment);
prop.setLanguageKey(name);
return prop.getIntList();
}