本文整理汇总了Java中com.jme3.font.BitmapText.getHeight方法的典型用法代码示例。如果您正苦于以下问题:Java BitmapText.getHeight方法的具体用法?Java BitmapText.getHeight怎么用?Java BitmapText.getHeight使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.jme3.font.BitmapText
的用法示例。
在下文中一共展示了BitmapText.getHeight方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Text
import com.jme3.font.BitmapText; //导入方法依赖的package包/类
public Text(String text, ColorRGBA color) {
bitmapText = new BitmapText(UIFactory.getUIConfig().getFont());
bitmapText.setSize(UIFactory.getUIConfig().getBodyFontSize());
bitmapText.setText(text);
if (color != null) {
bitmapText.setColor(color);
}
this.width = bitmapText.getLineWidth();
this.height = bitmapText.getHeight();
attachChild(bitmapText);
setNeedUpdate();
}
示例2: addInfo
import com.jme3.font.BitmapText; //导入方法依赖的package包/类
protected BitmapText addInfo( String info, int column ) {
BitmapText t = new BitmapText(guiFont);
t.setText( info );
t.setLocalTranslation( column * 200, yInfo, 0 );
joystickInfo.attachChild(t);
yInfo -= t.getHeight();
return t;
}
示例3: updateText
import com.jme3.font.BitmapText; //导入方法依赖的package包/类
private void updateText(int index) {
Node character = characters.get(index);
BitmapText name = playerNames.get(index);
float height = name.getHeight();
float altitude = character.getControl(CCharacterPhysics.class)
.getCapsuleShape().getHeight();
Vector3f textLocation = cam.getScreenCoordinates(character
.getLocalTranslation().add(0, altitude, 0))
.add(-40, 40 + 1.5f * height, 0);
name.setLocalTranslation(textLocation);
}