We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.

Give Text Curve

Home Forums General Questions Give Text Curve

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #63950
    cangunes
    Participant

    Hello, I have a model about rings. Models are designed with blend and verge3d but i don’t have original blend file. I want to add text in middle of the ring. Blend model have Text. I changed it. But i don’t give curve the ring. How can I do that with threejs. 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)
        }
    Attachments:
    You must be logged in to view attached files.
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.