Skip to content

Commit

Permalink
Whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nlisker committed Mar 3, 2024
1 parent 41753ca commit 7f0e562
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ final class Controls {

static Node createLightControls(AmbientLight light) {
return createTitlePane(light, null);
}
}

static Node createLightControls(PointLight light) {
var controls = createPointLightControls(light);
Expand Down Expand Up @@ -115,7 +115,7 @@ private static GridPane createPointLightControls(PointLight light) {
gridPane.addRow(gridPane.getRowCount(), createLabel("const", "Constant attenuation factor"), ca);
gridPane.addRow(gridPane.getRowCount(), createLabel("linear", "Linear attenuation factor"), la);
gridPane.addRow(gridPane.getRowCount(), createLabel("quad", "Quadratic attenuation factor"), qa);

return gridPane;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Node createLightsControls() {
directionalLights.forEach(light -> controls.getChildren().add(Controls.createLightControls(light)));
return controls;
}

Node createBackgroundControls() {
var bgProp = new SimpleObjectProperty<Image>();
var bgSize = new BackgroundSize(BackgroundSize.AUTO, BackgroundSize.AUTO, false, false, false, true);
Expand Down

0 comments on commit 7f0e562

Please sign in to comment.