Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da54ea0

Browse files
committed
fix: reduce default bloom strength, ensure auto-cycle starts on load
- Default bloom: 0.2 → 0.08, radius 0.25 → 0.2, threshold 0.5 → 0.6 - PostProcessing constructor matches new defaults - Bump SETTINGS_VERSION to '5' to clear stale localStorage (forces auto scenario) Co-Authored-By: claude-flow <[email protected]>
1 parent bf4d64a commit da54ea0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

ui/observatory/js/hud-controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const SCENARIO_NAMES = [
1919
];
2020

2121
export const DEFAULTS = {
22-
bloom: 0.2, bloomRadius: 0.25, bloomThresh: 0.5,
22+
bloom: 0.08, bloomRadius: 0.2, bloomThresh: 0.6,
2323
exposure: 1.3, vignette: 0.25, grain: 0.01, chromatic: 0.0005,
2424
boneThick: 0.018, jointSize: 0.035, glow: 0.3, trail: 0.35,
2525
wireColor: '#00d878', jointColor: '#ff4060', aura: 0.02,
@@ -28,7 +28,7 @@ export const DEFAULTS = {
2828
scenario: 'auto', cycle: 30, dataSource: 'demo', wsUrl: '',
2929
};
3030

31-
export const SETTINGS_VERSION = '4';
31+
export const SETTINGS_VERSION = '5';
3232

3333
export const PRESETS = {
3434
foundation: {},

ui/observatory/js/post-processing.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ export class PostProcessing {
7777
// Bloom — tuned for green wireframe glow
7878
this._bloomPass = new UnrealBloomPass(
7979
new THREE.Vector2(size.x, size.y),
80-
1.0, // strength (less aggressive than before)
81-
0.5, // radius
82-
0.25 // threshold
80+
0.08, // strength — subtle glow, overridden by settings
81+
0.2, // radius
82+
0.6 // threshold
8383
);
8484
this.composer.addPass(this._bloomPass);
8585

0 commit comments

Comments
 (0)