We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed3f331 commit 2747d7fCopy full SHA for 2747d7f
jme3-core/src/main/java/com/jme3/light/PointLight.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2009-2012, 2015-2016, 2018 jMonkeyEngine
+ * Copyright (c) 2009-2025 jMonkeyEngine
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
@@ -247,4 +247,15 @@ public PointLight clone() {
247
p.position = position.clone();
248
return p;
249
}
250
+
251
+ @Override
252
+ public String toString() {
253
+ return getClass().getSimpleName()
254
+ + "[name=" + name
255
+ + ", position=" + position
256
+ + ", radius=" + radius
257
+ + ", color=" + color
258
+ + ", enabled=" + enabled
259
+ + "]";
260
+ }
261
0 commit comments