Comment out mesh rendering in RoboticArmAnimator to disable visual representation of the armBot's position.

This commit is contained in:
Jerald-Golden-B 2025-05-03 12:35:56 +05:30
parent 75699e7199
commit 649352b4b4
1 changed files with 2 additions and 2 deletions

View File

@ -209,10 +209,10 @@ function RoboticArmAnimator({
/> />
</mesh> </mesh>
)} )}
<mesh position={[armBot.position[0], armBot.position[1] + 1.5, armBot.position[2]]} rotation={[-Math.PI / 2, 0, 0]}> {/* <mesh position={[armBot.position[0], armBot.position[1] + 1.5, armBot.position[2]]} rotation={[-Math.PI / 2, 0, 0]}>
<ringGeometry args={[1.59, 1.61, 64]} /> <ringGeometry args={[1.59, 1.61, 64]} />
<meshBasicMaterial color="green" side={THREE.DoubleSide} /> <meshBasicMaterial color="green" side={THREE.DoubleSide} />
</mesh> </mesh> */}
</> </>
); );
} }