Why does the code stop in react-three-fiber?

I am making a game through react-three-fiber for the first time.

I created the above code to create a character controller and move the box with the keyboard.

However, after refreshing, the box moves for a few seconds, then stops, and does not move even when I use the keyboard.

Why is that?

And when I jump, the box comes down too slowly.

What went wrong?

The box comes down so slowly,,,,,

I don’t know how to solve both problems.

// components/Player.tsx
import { Box } from "@react-three/drei";
import {RapierRigidBody, RigidBody} from "@react-three/rapier";
import {usePersonController} from "./controller.tsx";
import {useRef} from "react";
import {useFrame} from "@react-three/fiber";
import {Vector3} from "three";

export const Player = () => {
    const movementState = usePersonController()
    const rigidBodyRef = useRef<RapierRigidBody>(null)

    useFrame(() => {
        if (rigidBodyRef.current) {
            const vector = new Vector3(
                movementState.left ? -1 : movementState.right ? 1 : 0,
                movementState.jump ? 1 : 0,
                movementState.forward ? -1 : movementState.backward ? 1 : 0
            ).multiplyScalar(5)
            rigidBodyRef.current.setLinvel(vector, false)
        }
    })

    return (
        <RigidBody ref={rigidBodyRef} position={[0,  0, 0]} mass={100}>
            <Box />
        </RigidBody>
    );
};

After the first refresh, it moves for a few seconds and then suddenly stops. addEventListener continues to work, but the Box does not move.

When you jump, the box goes down very slowly. It goes down so slowly that it seems like the gravity part is applied strangely.

This is the full code I wrote

App.tsx

// App.tsx
import './App.css';
import { Canvas } from '@react-three/fiber';
import { Physics } from '@react-three/rapier';
import { OrbitControls } from '@react-three/drei';
import Plane from "./components/plane.tsx";
import {Player} from "./components/player.tsx";

function App() {
    return (
        <Canvas shadows camera={{ position: [0, 5, 10], fov: 45 }}>
            <ambientLight intensity={0.5} />
            <spotLight position={[10, 10, 10]} angle={0.15} penumbra={1} castShadow />
            <directionalLight position={[-10, 10, -10]} intensity={0.5} castShadow />
            <OrbitControls />
            <Physics>
                <Plane />
                <Player />
            </Physics>
        </Canvas>
    );
}

export default App;

controller.tsx

import {useEffect, useState} from "react";

type Movement = {
    forward: boolean;
    backward: boolean;
    left: boolean;
    right: boolean;
    jump: boolean;
}

export const usePersonController = (): Movement => {
    const [movement, setMovement] = useState<Movement>({
        backward: false,
        forward: false,
        jump: false,
        left: false,
        right: false
    });

    useEffect(() => {
        const keys : {[key: string]: keyof Movement} = {
            KeyW: 'forward',
            KeyS: 'backward',
            KeyA: 'left',
            KeyD: 'right',
            Space: 'jump',
        }
        const moveFieldByKey = (key: string): keyof Movement => keys[key];

        const keyDown = (e: KeyboardEvent) => {
            console.log(1)
            setMovement(prev => ({...prev, [moveFieldByKey(e.code)]: true}));
        }

        const keyUp = (e: KeyboardEvent) => {
            console.log(2)
            setMovement(prev => ({...prev, [moveFieldByKey(e.code)]: false}));
        }

        window.addEventListener('keydown', keyDown)
        window.addEventListener('keyup', keyUp)

        return () => {
            window.addEventListener('keydown', keyDown)
            window.addEventListener('keyup', keyUp)
        }
    }, []);


    return movement

}
// Plane.js
import {RigidBody} from '@react-three/rapier';

export default function Plane() {
    return (
        <RigidBody type={'fixed'}>
            <mesh rotation={[-Math.PI / 2, 0 ,0]} receiveShadow={true}>
                <planeGeometry args={[100, 100]} />
                <meshStandardMaterial color={'lightblue'} />
            </mesh>
        </RigidBody>
    );
}
// components/Player.tsx
import { Box } from "@react-three/drei";
import {RapierRigidBody, RigidBody} from "@react-three/rapier";
import {usePersonController} from "./controller.tsx";
import {useRef} from "react";
import {useFrame} from "@react-three/fiber";
import {Vector3} from "three";

export const Player = () => {
    const movementState = usePersonController()
    const rigidBodyRef = useRef<RapierRigidBody>(null)

    useFrame(() => {
        if (rigidBodyRef.current) {
            const vector = new Vector3(
                movementState.left ? -1 : movementState.right ? 1 : 0,
                movementState.jump ? 1 : 0,
                movementState.forward ? -1 : movementState.backward ? 1 : 0
            ).multiplyScalar(5)
            rigidBodyRef.current.setLinvel(vector, false)
        }
    })

    return (
        <RigidBody ref={rigidBodyRef} position={[0,  0, 0]} mass={100}>
            <Box />
        </RigidBody>
    );
};

I’m just starting out and I’m missing a lot of things. I would appreciate it if you could give me some hints.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật