Skip to content

Commit 21849d2

Browse files
authored
Update LightsDebugState: privatize fields
1 parent a18d8a6 commit 21849d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

jme3-core/src/main/java/com/jme3/environment/util/LightsDebugState.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ public class LightsDebugState extends BaseAppState {
8484
private final ArrayDeque<Light> lightDeque = new ArrayDeque<>();
8585
private Predicate<Light> lightFilter = x -> true; // Identity Function
8686

87-
protected ViewPort viewPort;
88-
protected AssetManager assetManager;
89-
protected Material debugMaterial;
90-
protected Node debugNode;
91-
protected Spatial scene; // The scene whose lights will be debugged
87+
private ViewPort viewPort;
88+
private AssetManager assetManager;
89+
private Material debugMaterial;
90+
private Node debugNode;
91+
private Spatial scene; // The scene whose lights will be debugged
9292

9393
private boolean showOnTop = true;
9494
private float lightProbeScale = 1.0f;

0 commit comments

Comments
 (0)