blob: c89953f072cfa53a2c44682acf903f072f51eeb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
package gui;
import javafx.geometry.Pos;
import javafx.scene.control.Button;
import javafx.scene.control.Slider;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.scene.text.Text;
public class Settings extends Pane
{
public Settings()
{
Text t1 = new Text();
t1.setText("Music Volume");
t1.setFill(Color.WHITE);
Slider musicVol = new Slider();
musicVol.setMax(100);
musicVol.setMin(0);
Text t2 = new Text();
t2.setText("Sound Effects Volume");
t2.setFill(Color.WHITE);
Slider sfxVol = new Slider();
sfxVol.setMax(100);
sfxVol.setMin(0);
Button devMenu = new Button();
devMenu.setText("Debug Menu");
devMenu.setOnAction(e -> Driver.setBackground("assets/trees.png"));
Button exit = new Button();
exit.setText("Exit");
exit.setOnAction(e -> Driver.setMenu(new MainMenu()));
VBox options = new VBox();
options.setSpacing(10);
options.setAlignment(Pos.CENTER);
options.getChildren().addAll(t1,musicVol,t2,sfxVol,devMenu,exit);
options.prefWidthProperty().bind(super.prefWidthProperty().multiply(0.25));
options.prefHeightProperty().bind(super.prefHeightProperty());
HBox rootBox = new HBox();
rootBox.prefWidthProperty().bind(super.prefWidthProperty());
rootBox.prefHeightProperty().bind(super.prefHeightProperty());
rootBox.getChildren().add(options);
rootBox.setAlignment(Pos.CENTER);
super.getChildren().add(rootBox);
}
}
|