Hi, I have a Text created with verge3d blender. I want to give this Text a curve property, but I can’t give it a curve property. I do not have the original blend file. How can I do it? Can you help me?
if (child.isMesh && child.name === 'Text') {
const womanMesh = child.clone();
womanMesh.name = child.material.name.replace("Text", "WomanText")
console.log('buradaki child: ', womanMesh);
womanMesh.visible = true;
womanMesh.geometry.parameters.text = child.geometry.parameters.text.replace("dilek","deneme1")
womanMesh.geometry.parameters.parameters.curveSegments = 50;
womanMesh.geometry.parameters.parameters.bevelEnabled = true;
womanMesh.geometry.parameters.parameters.bevelThickness = 2;
womanMesh.geometry.parameters.parameters.bevelSize = 1;
womanMesh.position.x = -1.5;
womanMesh.position.y = 1.8;
womanMesh.position.z = 6.4;
womanMesh.quaternion.w = 0.8;
womanMesh.quaternion.x = -0.7;
womanMesh.quaternion.y = 0;
womanMesh.quaternion.z = 0;
womanMesh.material.emissive.setRGB(4, 4, 4);
baseMat[child.name.replace('Text', 'womanText')] = womanMesh
appInstance.scene.add(womanMesh)
}