We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fea76f commit d855401Copy full SHA for d855401
jme3-core/src/main/java/com/jme3/light/AmbientLight.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2009-2012, 2015 jMonkeyEngine
+ * Copyright (c) 2009-2025 jMonkeyEngine
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
@@ -83,4 +83,13 @@ public Type getType() {
83
return Type.Ambient;
84
}
85
86
+ @Override
87
+ public String toString() {
88
+ return getClass().getSimpleName()
89
+ + "[name=" + name
90
+ + ", color=" + color
91
+ + ", enabled=" + enabled
92
+ + "]";
93
+ }
94
+
95
0 commit comments