We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c8aa04 commit 8911d07Copy full SHA for 8911d07
jme3-core/src/main/java/com/jme3/scene/control/LightControl.java
@@ -319,4 +319,16 @@ public void write(JmeExporter ex) throws IOException {
319
oc.write(axisRotation, "axisRotation", Axis.Z);
320
oc.write(axisDirection, "axisDirection", Direction.Positive);
321
}
322
+
323
+ @Override
324
+ public String toString() {
325
+ return getClass().getSimpleName() +
326
+ "[light=" + light +
327
+ ", controlDir=" + controlDir +
328
+ ", axisRotation=" + axisRotation +
329
+ ", axisDirection=" + axisDirection +
330
+ ", enabled=" + enabled +
331
+ ", spatial=" + spatial +
332
+ "]";
333
+ }
334
0 commit comments