Skip to content

Commit

Permalink
fix(emissive): ACT-972 fix emissive intensity
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarvv committed Sep 23, 2024
1 parent eda4dd7 commit 628378a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/Models.service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const normaliseMaterialsConfig = (materials: Record<string, Material>, bl
}

if (mat.emissiveMap) {
mat.emissiveIntensity = bloomConfig?.materialIntensity || 3.3;
mat.emissiveIntensity = bloomConfig?.materialIntensity || 1.0;
}
});
};
Expand Down

0 comments on commit 628378a

Please sign in to comment.