MikaFil commited on
Commit
57d1fae
·
verified ·
1 Parent(s): 7935291

Update tooltips.js

Browse files
Files changed (1) hide show
  1. 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(1, 0.8, 0); // Strong orange emissive
50
- mat.emissiveIntensity = 2; // Brightness, tweak as needed
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