本文整理汇总了Java中net.minecraft.util.math.MathHelper.getDouble方法的典型用法代码示例。如果您正苦于以下问题:Java MathHelper.getDouble方法的具体用法?Java MathHelper.getDouble怎么用?Java MathHelper.getDouble使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.util.math.MathHelper
的用法示例。
在下文中一共展示了MathHelper.getDouble方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: MapGenStronghold
import net.minecraft.util.math.MathHelper; //导入方法依赖的package包/类
public MapGenStronghold(Map<String, String> p_i2068_1_)
{
this();
for (Entry<String, String> entry : p_i2068_1_.entrySet())
{
if (((String)entry.getKey()).equals("distance"))
{
this.distance = MathHelper.getDouble((String)entry.getValue(), this.distance, 1.0D);
}
else if (((String)entry.getKey()).equals("count"))
{
this.structureCoords = new ChunkPos[MathHelper.getInt((String)entry.getValue(), this.structureCoords.length, 1)];
}
else if (((String)entry.getKey()).equals("spread"))
{
this.spread = MathHelper.getInt((String)entry.getValue(), this.spread, 1);
}
}
}
示例2: MapGenMineshaft
import net.minecraft.util.math.MathHelper; //导入方法依赖的package包/类
public MapGenMineshaft(Map<String, String> p_i2034_1_)
{
for (Entry<String, String> entry : p_i2034_1_.entrySet())
{
if (((String)entry.getKey()).equals("chance"))
{
this.chance = MathHelper.getDouble((String)entry.getValue(), this.chance);
}
}
}
示例3: getDouble
import net.minecraft.util.math.MathHelper; //导入方法依赖的package包/类
public static double getDouble(String p_getDouble_0_, double p_getDouble_1_)
{
return MathHelper.getDouble(p_getDouble_0_, p_getDouble_1_);
}