本文整理汇总了Java中com.jme3.font.BitmapFont.VAlign.Center方法的典型用法代码示例。如果您正苦于以下问题:Java VAlign.Center方法的具体用法?Java VAlign.Center怎么用?Java VAlign.Center使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.jme3.font.BitmapFont.VAlign
的用法示例。
在下文中一共展示了VAlign.Center方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: toVAlign
import com.jme3.font.BitmapFont.VAlign; //导入方法依赖的package包/类
public static VAlign toVAlign(String align) {
if (align.equalsIgnoreCase("middle")) {
return VAlign.Center;
} else if (align.equalsIgnoreCase("bottom")) {
return VAlign.Bottom;
}
return VAlign.Top;
}
示例2: identToVAlign
import com.jme3.font.BitmapFont.VAlign; //导入方法依赖的package包/类
public static VAlign identToVAlign(IdentValue ident) {
if (ident == IdentValue.TOP) {
return VAlign.Top;
} else if (ident == IdentValue.BOTTOM) {
return VAlign.Bottom;
}
return VAlign.Center;
}
示例3: calcVAlign
import com.jme3.font.BitmapFont.VAlign; //导入方法依赖的package包/类
protected VAlign calcVAlign() {
CascadedStyle style = cssState.getCascadedStyle(false);
if (style != null) {
PropertyDeclaration pv = style.propertyByName(CSSName.VERTICAL_ALIGN);
if (pv != null)
return CssUtil.identToVAlign(pv.asIdentValue());
}
return VAlign.Center;
}
示例4: AbstractChooserDialog
import com.jme3.font.BitmapFont.VAlign; //导入方法依赖的package包/类
public AbstractChooserDialog(final BaseScreen screen, String styleId, String title,
ChooserModel<I> resources, Preferences pref, ChooserView<I> view) {
super(screen, styleId, VAlign.Center, Align.Right, null, true, SaveType.SIZE, pref);
this.view = view;
this.resources = resources;
panel = createPanel();
panel.onChange((evt) -> {
choose(evt.getNewValue(), evt.getOldValue(), evt.isTemporary());
});
setWindowTitle(title);
setDestroyOnHide(true);
setResizable(true);
}
示例5: identifyVAlign
import com.jme3.font.BitmapFont.VAlign; //导入方法依赖的package包/类
private VAlign identifyVAlign(String valign) {
if (valign == null)
return null;
if (valign.equals(VAlign.Bottom.name())) {
return VAlign.Bottom;
}
if (valign.equals(VAlign.Center.name())) {
return VAlign.Center;
}
if (valign.equals(VAlign.Top.name())) {
return VAlign.Top;
}
return null;
}
示例6: alignButtonsV
import com.jme3.font.BitmapFont.VAlign; //导入方法依赖的package包/类
public void alignButtonsV(VAlign vAlign) {
if (vAlign == VAlign.Top) {
btnPrevElement.setY(getHeight()-btnPrevElement.getHeight());
btnNextElement.setY(getHeight()-btnNextElement.getHeight());
} else if (vAlign == VAlign.Center) {
btnPrevElement.centerToParentV();
btnNextElement.centerToParentV();
} else if (vAlign == VAlign.Center) {
btnPrevElement.setY(0);
btnNextElement.setY(0);
}
}