This commit is contained in:
Mats Pape 2021-11-25 10:31:49 +01:00
commit da0e493461
3 changed files with 32 additions and 3 deletions

View File

@ -5,14 +5,19 @@
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<<<<<<< HEAD
<VBox prefHeight="800.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.happy_bird.HappyBird">
<Button>
Start
</Button>
=======
<StackPane prefHeight="800.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.happy_bird.HappyBird" back >
>>>>>>> c070a72d9131552445c751d71391bab4f0059fd4
<ImageView>
<image>
<Image url="@pics/Background.png"></Image>
</image>
</ImageView>
</VBox>
</StackPane>

View File

@ -19,10 +19,29 @@ public class HappyBirdMain extends Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("happyBird.fxml"));
/*FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("happyBird.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 800, 700);
stage.setTitle("HappyBird");
stage.setScene(scene);
stage.show();*/
StackPane stackPane = new StackPane();
Scene scene = new Scene(stackPane, 800, 700);
stage.setTitle("Happy Bird");
stage.setScene(scene);
Image image = new Image("file:src/main/resources/com/example/happy_bird/pics/Background.png");
BackgroundImage backgroundImageImg = new BackgroundImage(
image,
BackgroundRepeat.NO_REPEAT,
BackgroundRepeat.NO_REPEAT,
BackgroundPosition.DEFAULT,
BackgroundSize.DEFAULT
);
Background background = new Background(backgroundImageImg);
stackPane.setBackground(background);
stage.show();
}
}

View File

@ -5,14 +5,19 @@
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<<<<<<< HEAD
<VBox prefHeight="800.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.happy_bird.HappyBird">
<Button>
Start
</Button>
=======
<StackPane prefHeight="800.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.happy_bird.HappyBird" back >
>>>>>>> c070a72d9131552445c751d71391bab4f0059fd4
<ImageView>
<image>
<Image url="@pics/Background.png"></Image>
</image>
</ImageView>
</VBox>
</StackPane>