From 0e116d694556d4dd5dee475f598b0a04779b6cab Mon Sep 17 00:00:00 2001 From: cailean Date: Thu, 27 Nov 2025 23:51:24 +0000 Subject: [PATCH] half video --- js/Content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Content.js b/js/Content.js index 842b676..9158e4f 100644 --- a/js/Content.js +++ b/js/Content.js @@ -221,7 +221,7 @@ export class VideoContent extends Content { return new Promise((resolve, reject) => { this.video.addEventListener('loadedmetadata', () => { const aspect = this.video.videoWidth / this.video.videoHeight; - const height = 4; // or any desired height + const height = 2; // or any desired height const width = height * aspect; this.texture = new THREE.VideoTexture(this.video);