Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not able to work with Height Field collider #730

Open
ApilKakkar opened this issue Mar 1, 2025 · 0 comments
Open

Not able to work with Height Field collider #730

ApilKakkar opened this issue Mar 1, 2025 · 0 comments

Comments

@ApilKakkar
Copy link

import { Canvas } from '@react-three/fiber'
import { Physics, RigidBody, HeightfieldCollider } from '@react-three/rapier'

export default function App() {
return (





<mesh position={[0, 2, 0]}>
<boxGeometry args={[1, 1, 1]} />





)
}

function TestHeightfield() {
// 2x2 grid => you need exactly 4 height values
const heights = [0, 1, 1, 0];

return (

<HeightfieldCollider
args={[2, 2, heights, { x: 1, y: 1, z: 1 }]}
/>

);
}

Image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant