Spaces:
Running
Running
Update tooltips.js
Browse files- tooltips.js +2 -2
tooltips.js
CHANGED
|
@@ -46,8 +46,8 @@ export async function initializeTooltips(options) {
|
|
| 46 |
mat.diffuse = new pc.Color(1, 0.8, 0);
|
| 47 |
mat.specular = new pc.Color(1, 1, 1);
|
| 48 |
mat.shininess = 20;
|
| 49 |
-
mat.emissive = new pc.Color(
|
| 50 |
-
mat.emissiveIntensity =
|
| 51 |
mat.useLighting = false; // Optional: disables effect of lights, makes it "self-lit"
|
| 52 |
mat.update();
|
| 53 |
|
|
|
|
| 46 |
mat.diffuse = new pc.Color(1, 0.8, 0);
|
| 47 |
mat.specular = new pc.Color(1, 1, 1);
|
| 48 |
mat.shininess = 20;
|
| 49 |
+
mat.emissive = new pc.Color(0.7, 0.7, 0.7); // Strong orange emissive
|
| 50 |
+
mat.emissiveIntensity = 1; // Brightness, tweak as needed
|
| 51 |
mat.useLighting = false; // Optional: disables effect of lights, makes it "self-lit"
|
| 52 |
mat.update();
|
| 53 |
|