#
luxiaotao1123
2024-05-11 3cc7f24293fa9669d4b021713a6b69cab1408c55
#
5个文件已修改
9 ■■■■■ 已修改文件
src/components/camera.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/ctrl.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/house.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/left/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/right/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/camera.jsx
@@ -12,7 +12,7 @@
        <>
            <PerspectiveCamera
                makeDefault
                position={[-100, 200, 1000]}
                position={[0, 150, 1100]}
                fov={48}
                near={1}
                far={100000}
src/components/ctrl.jsx
@@ -31,6 +31,7 @@
                    ref={controlsRef}
                    autoRotate
                    autoRotateSpeed={0.5}
                    target={[-200, 0, 0]}
                />
                {/* <PointerCtrl /> */}
            </group>
src/components/house.jsx
@@ -9,7 +9,7 @@
const House = (props) => {
  const {
    wallThickness = 2,
    wallOpacity = .6,
    wallOpacity = 1,
    width = DEBUG ? 14000 : 1400,
    length = DEBUG ? 12000 : 1200,
    height = DEBUG ? 4000 : 400,
src/pages/left/index.jsx
@@ -11,7 +11,7 @@
import CapacityCharts from './components/capacity-charts';
const Left = () => {
    const [isExpanded, setIsExpanded] = useState(false);
    const [isExpanded, setIsExpanded] = useState(true);
    const containerAnimation = useSpring({
        transform: isExpanded ? 'translate(0%)' : 'translateX(-100%)',
src/pages/right/index.jsx
@@ -12,7 +12,7 @@
// import Handles from './components/Handles';
const Right = () => {
  const [isExpanded, setIsExpanded] = useState(false);
  const [isExpanded, setIsExpanded] = useState(true);
  const containerAnimation = useSpring({
    transform: isExpanded ? 'translate(0%)' : 'translateX(100%)',