'Cannot rotate mesh in React Three Fiber
I have a Plane mesh, and I want to have it initialised with an initial rotation vector. However, setting the rotateX
prop does not work.
<mesh rotateX={1}>
<planeGeometry args={[5, 5, 64, 64]} />
<meshStandardMaterial />
</mesh>
What am I doing wrong?
Solution 1:[1]
If you are using typescript, then you should try installing @types/three
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | JULURI SAICHANDU |