Skip to content

Commit

Permalink
Allow to tweak headlight intensity more in lights editor
Browse files Browse the repository at this point in the history
  • Loading branch information
michaliskambi committed Aug 28, 2024
1 parent 6d7b197 commit 253d026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/v3dscenelightseditor.pas
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ constructor THeadLightMenu.Create(AOwner: TComponent; AHeadlight: TAbstractLight

IntensitySlider := TCastleFloatSlider.Create(Self);
IntensitySlider.Min := 0;
IntensitySlider.Max := 1;
IntensitySlider.Max := 10;
IntensitySlider.Value := Headlight.Intensity;
IntensitySlider.OnChange := @IntensityChanged;
Add('Intensity', IntensitySlider);
Expand Down

0 comments on commit 253d026

Please sign in to comment.