Как переместить узел с AnimationTimer? - PullRequest
0 голосов
/ 13 апреля 2019

Я хочу переместить прямоугольник по экрану, используя AnimationTimer.Я хочу сделать это, потому что я хочу узнать, как работает AnimationTimer, чтобы я мог сделать игру с ним.У меня сейчас проблемы с этим.

public class FXTimer extends Application {


    @Override
    public void start(Stage primaryStage) {

        Rectangle rect = new Rectangle(1000,100,100,100);

        AnimationTimer timer = new AnimationTimer(){
            @Override
            public void handle(long now) {
                rect.relocate(rect.getLayoutX()-10, 100);
            }      
        };

        //root.getChildren().addAll(rect);
        timer.start();


        primaryStage.setTitle("Hello World!");
        primaryStage.setScene(new Scene(new Group(rect),1000,1000));
        primaryStage.show();
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        launch(args);
    }

}

1 Ответ

3 голосов
/ 13 апреля 2019

Вот простой пример (mvce: копировать, вставить, запустить). Обратите внимание на комментарии:

import javafx.animation.AnimationTimer;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;

public class FXTimer extends Application {

    @Override
    public void start(Stage primaryStage) {

        Rectangle rect = new Rectangle(0,0,10,10); //make is small so you can see it move
        rect.setFill(Color.BLUE); //set distinc color so you can see it move
        AnimationTimer timer = new AnimationTimer(){
            @Override
            public void handle(long now) {
                rect.setTranslateX(rect.getTranslateX()+ 1);
                //rect.relocate(rect.getLayoutX() +10, 100); //relocate does not change translateX or translateY
            }
        };

        timer.start();

        primaryStage.setTitle("AnimationTimer Demo");
        primaryStage.setScene(new Scene(new Group(rect),300,100));
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...