本文整理汇总了Java中javafx.scene.Group.setTranslateX方法的典型用法代码示例。如果您正苦于以下问题:Java Group.setTranslateX方法的具体用法?Java Group.setTranslateX怎么用?Java Group.setTranslateX使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.Group
的用法示例。
在下文中一共展示了Group.setTranslateX方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createRectangle
import javafx.scene.Group; //导入方法依赖的package包/类
public static Group createRectangle(Color color, double tx, double ty, double sx, double sy) {
Group squareGroup = new Group();
Rectangle squareShape = new Rectangle(1.0, 1.0);
squareShape.setFill(color);
squareShape.setTranslateX(-0.5);
squareShape.setTranslateY(-0.5);
squareGroup.getChildren().add(squareShape);
squareGroup.setTranslateX(tx);
squareGroup.setTranslateY(ty);
squareGroup.setScaleX(sx);
squareGroup.setScaleY(sy);
return squareGroup;
}
示例2: initializeLocationTypeIndicatorArrows
import javafx.scene.Group; //导入方法依赖的package包/类
private void initializeLocationTypeIndicatorArrows() {
// Initial indicator
final Group initialLocationGuideContainer = controller.initialLocationGuideContainer;
final Path initialLocationGuideArrow = controller.initialLocationGuideArrow;
final Label initialLocationGuideLabel = controller.initialLocationGuideLabel;
drawIndicatorArrow(initialLocationGuideArrow);
initialLocationGuideContainer.setRotate(-45-90);
initialLocationGuideContainer.setTranslateX(2.3 * GRID_SIZE);
initialLocationGuideContainer.setTranslateY(3.8 * GRID_SIZE);
initialLocationGuideLabel.setRotate(180);
initialLocationGuideLabel.setTranslateY(10.5);
initialLocationGuideContainer.toFront();
initialLocationGuideContainer.setOpacity(0);
// Final indicator
final Group finalLocationGuideContainer = controller.finalLocationGuideContainer;
final Path finalLocationGuideArrow = controller.finalLocationGuideArrow;
final Label finalLocationGuideLabel = controller.finalLocationGuideLabel;
drawIndicatorArrow(finalLocationGuideArrow);
finalLocationGuideContainer.setRotate(45);
finalLocationGuideContainer.setTranslateX(-2.3 * GRID_SIZE);
finalLocationGuideContainer.setTranslateY(-3.8 * GRID_SIZE);
finalLocationGuideLabel.setTranslateY(10.5);
finalLocationGuideContainer.toFront();
finalLocationGuideContainer.setOpacity(0);
if (!controller.getComponent().isFirsTimeShown()) {
initialLocationGuideContainer.setOpacity(1);
finalLocationGuideContainer.setOpacity(1);
playIndicatorAnimations(Location.Type.INITIAL, initialLocationGuideContainer);
playIndicatorAnimations(Location.Type.FINAl, finalLocationGuideContainer);
controller.getComponent().setFirsTimeShown(true);
}
}
示例3: initInfoPanel
import javafx.scene.Group; //导入方法依赖的package包/类
private void initInfoPanel() {
infoPanel = new Group();
roundCaption = new Text();
roundCaption.setText("ROUND");
roundCaption.setTextOrigin(VPos.TOP);
roundCaption.setFill(Color.rgb(51, 102, 51));
Font f = new Font("Impact", 18);
roundCaption.setFont(f);
roundCaption.setTranslateX(30);
roundCaption.setTranslateY(128);
round = new Text();
round.setTranslateX(roundCaption.getTranslateX() +
roundCaption.getBoundsInLocal().getWidth() + Config.INFO_TEXT_SPACE);
round.setTranslateY(roundCaption.getTranslateY());
round.setText(levelNumber + "");
round.setTextOrigin(VPos.TOP);
round.setFont(f);
round.setFill(Color.rgb(0, 204, 102));
scoreCaption = new Text();
scoreCaption.setText("SCORE");
scoreCaption.setFill(Color.rgb(51, 102, 51));
scoreCaption.setTranslateX(30);
scoreCaption.setTranslateY(164);
scoreCaption.setTextOrigin(VPos.TOP);
scoreCaption.setFont(f);
score = new Text();
score.setTranslateX(scoreCaption.getTranslateX() +
scoreCaption.getBoundsInLocal().getWidth() + Config.INFO_TEXT_SPACE);
score.setTranslateY(scoreCaption.getTranslateY());
score.setFill(Color.rgb(0, 204, 102));
score.setTextOrigin(VPos.TOP);
score.setFont(f);
score.setText("");
livesCaption = new Text();
livesCaption.setText("LIFE");
livesCaption.setTranslateX(30);
livesCaption.setTranslateY(200);
livesCaption.setFill(Color.rgb(51, 102, 51));
livesCaption.setTextOrigin(VPos.TOP);
livesCaption.setFont(f);
Color INFO_LEGEND_COLOR = Color.rgb(0, 114, 188);
int infoWidth = Config.SCREEN_WIDTH - Config.FIELD_WIDTH;
Rectangle black = new Rectangle();
black.setWidth(infoWidth);
black.setHeight(Config.SCREEN_HEIGHT);
black.setFill(Color.BLACK);
ImageView verLine = new ImageView();
verLine.setImage(new Image(Level.class.getResourceAsStream(Config.IMAGE_DIR+"vline.png")));
verLine.setTranslateX(3);
ImageView logo = new ImageView();
logo.setImage(Config.getImages().get(Config.IMAGE_LOGO));
logo.setTranslateX(30);
logo.setTranslateY(30);
Text legend = new Text();
legend.setTranslateX(30);
legend.setTranslateY(310);
legend.setText("LEGEND");
legend.setFill(INFO_LEGEND_COLOR);
legend.setTextOrigin(VPos.TOP);
legend.setFont(new Font("Impact", 18));
infoPanel.getChildren().addAll(black, verLine, logo, roundCaption,
round, scoreCaption, score, livesCaption, legend);
for (int i = 0; i < Bonus.COUNT; i++) {
Bonus bonus = new Bonus(i);
Text text = new Text();
text.setTranslateX(100);
text.setTranslateY(350 + i * 40);
text.setText(Bonus.NAMES[i]);
text.setFill(INFO_LEGEND_COLOR);
text.setTextOrigin(VPos.TOP);
text.setFont(new Font("Arial", 12));
bonus.setTranslateX(30 + (820 - 750 - bonus.getWidth()) / 2);
bonus.setTranslateY(text.getTranslateY() -
(bonus.getHeight() - text.getBoundsInLocal().getHeight()) / 2);
// Workaround JFXC-2379
infoPanel.getChildren().addAll(bonus, text);
}
infoPanel.setTranslateX(Config.FIELD_WIDTH);
}