Is there a way to dynamically update the vertices of a RingGeometry in THREE.JS?
Previously, I achieved this by creating a new RingGeometry and replacing the old one's vertices with those of the new geometry. This method worked perfectly in version 6.7 of THREE.JS but stopped working in the latest version (8.9).
Code snippet using version 6.7:
// Code for version 6.7 goes here
<script src="https://threejs-socketio-basic.herokuapp.com/three67.js"></script>
Code snippet using version 8.9:
// Code for version 8.9 goes here
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/89/three.min.js"></script>
Any insights on why it's not working in the latest version?