Tweak: Camera movement and door glow and chances of movement

This commit is contained in:
Dejvino
2025-11-17 08:47:05 +01:00
parent 192fc39461
commit c521828a08
2 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -5,11 +5,11 @@ import { state } from '../state.js';
function updateCamera() {
const globalTime = Date.now() * 0.00005;
const lookAtTime = Date.now() * 0.00003;
const globalTime = Date.now() * 0.00003;
const lookAtTime = Date.now() * 0.0002;
const camAmplitude = 0.5;
const lookAmplitude = 0.05;
const camAmplitude = 0.2;
const lookAmplitude = 0.1;
// Base Camera Position in front of the TV
const baseX = -0.5;