feat: Energy beam connecting Batcave terminal to the sky (#86)
All checks were successful
CI / validate (pull_request) Successful in 5s
CI / auto-merge (pull_request) Successful in 1s

Refs #86
Agent: grok
This commit is contained in:
Alexander Whitestone
2026-03-24 09:03:46 -04:00
parent 92a13caf5a
commit b58efd7109

8
app.js
View File

@@ -1323,17 +1323,19 @@ loadSovereigntyStatus();
// === ENERGY BEAM FOR BATCAVE TERMINAL ===
// Vertical energy beam from Batcave terminal area to the sky with animated opacity and pulse effect.
const ENERGY_BEAM_RADIUS = 0.2;
const ENERGY_BEAM_RADIUS = 0.5;
const ENERGY_BEAM_HEIGHT = 100;
const ENERGY_BEAM_Y = 0;
const ENERGY_BEAM_X = -3;
const ENERGY_BEAM_Z = -3;
const energyBeamGeometry = new THREE.CylinderGeometry(ENERGY_BEAM_RADIUS, ENERGY_BEAM_RADIUS, ENERGY_BEAM_HEIGHT, 32);
const energyBeamGeometry = new THREE.CylinderGeometry(ENERGY_BEAM_RADIUS, ENERGY_BEAM_RADIUS * 3, ENERGY_BEAM_HEIGHT, 32);
const energyBeamMaterial = new THREE.MeshBasicMaterial({
color: NEXUS.colors.accent,
emissive: NEXUS.colors.accent,
emissiveIntensity: 2,
transparent: true,
opacity: 0.5,
opacity: 0.6,
blending: THREE.AdditiveBlending,
side: THREE.DoubleSide,
depthWrite: false