Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Raise max light range to 150m
Browse files Browse the repository at this point in the history
Although that may still be short for landing lights.  Issue #27
  • Loading branch information
MOARdV committed Jan 29, 2023
1 parent 4fe90a0 commit bc253b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/AviationLights.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public class TypePreset
public float Intensity = 0.5f;

[KSPField(isPersistant = true, guiActiveEditor = true, guiName = "#AL_LightRange", advancedTweakable = true)]
[UI_FloatRange(minValue = 1.0f, stepIncrement = 1.0f, maxValue = 50.0f, affectSymCounterparts = UI_Scene.None, scene = UI_Scene.Editor, suppressEditorShipModified = true)]
[UI_FloatRange(minValue = 1.0f, stepIncrement = 1.0f, maxValue = 150.0f, affectSymCounterparts = UI_Scene.None, scene = UI_Scene.Editor, suppressEditorShipModified = true)]
public float Range = 10.0f;

[KSPField(isPersistant = true, guiName = "#AL_LightType", advancedTweakable = true)]
Expand Down

0 comments on commit bc253b6

Please sign in to comment.