Would it be possible to convert Text Object to just a normal Curve Object?
Thanks.
Would it be possible to convert Text Object to just a normal Curve Object?
Thanks.
In object mode Press “Alt C”
Ah! Of course… so basic (double palm to the head.)
What’s the Python command for it, I wonder?
bpy.ops.object.convert(target=‘CURVE’)
But is easy to find out yourself (in other circumstances too)
Before really clicking use Ctrl-C to copy the command to the clipboard and copy it to where you need it (text!)
Thank you so much PKHG~
Convert to Curve (Works for Multiple Selected Objects)
import bpy
bpy.ops.object.convert(target=‘CURVE’)