All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2025-11-21 22:46:27 +08:00
parent bb960dc101
commit 37b33ef19c
2 changed files with 8 additions and 7 deletions

View File

@@ -27,9 +27,9 @@
// 基础 Three.js 场景
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera(45, width / height, 0.1, 1000);
// 稍微偏右俯视一点
camera.position.set(0, 0.4, 4.0);
var camera = new THREE.PerspectiveCamera(40, width / height, 0.1, 1000);
// 稍微偏右俯视一点,拉远一点避免球体被裁剪
camera.position.set(0, 0.3, 4.8);
camera.lookAt(0, 0, 0);
var renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });