GeometryNodeStringToCurves(GeometryNode)
base classes — bpy_struct
, Node
, NodeInternal
, GeometryNode
- class bpy.types.GeometryNodeStringToCurves(GeometryNode)
- align_x
LEFT
Left – Align text to the left.CENTER
Center – Align text to the center.RIGHT
Right – Align text to the right.JUSTIFY
Justify – Align text to the left and the right.FLUSH
Flush – Align text to the left and the right, with equal character spacing.
- Type
enum in [‘LEFT’, ‘CENTER’, ‘RIGHT’, ‘JUSTIFY’, ‘FLUSH’], default ‘LEFT’
- align_y
TOP_BASELINE
Top Baseline – Align text to the top baseline.TOP
Top – Align text to the top.MIDDLE
Middle – Align text to the middle.BOTTOM_BASELINE
Bottom Baseline – Align text to the bottom baseline.BOTTOM
Bottom – Align text to the bottom.
- Type
enum in [‘TOP_BASELINE’, ‘TOP’, ‘MIDDLE’, ‘BOTTOM_BASELINE’, ‘BOTTOM’], default ‘TOP_BASELINE’
- font
Font of the text. Falls back to the UI font by default
- Type
- overflow
OVERFLOW
Overflow – Let the text use more space than the specified height.SCALE_TO_FIT
Scale To Fit – Scale the text size to fit inside the width and height.TRUNCATE
Truncate – Only output curves that fit within the width and height. Output the remainder to the “Remainder” output.
- Type
enum in [‘OVERFLOW’, ‘SCALE_TO_FIT’, ‘TRUNCATE’], default ‘OVERFLOW’
- classmethod is_registered_node_type()
True if a registered node type
- Returns
Result
- Return type
boolean
- classmethod input_template(index)
Input socket template
- Parameters
index (int in [0, inf]) – Index
- Returns
result
- Return type
- classmethod output_template(index)
Output socket template
- Parameters
index (int in [0, inf]) – Index
- Returns
result
- Return type
- classmethod bl_rna_get_subclass(id, default=None)
- Parameters
id (string) – The RNA type identifier.
- Returns
The RNA type or default when not found.
- Return type
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)
- Parameters
id (string) – The RNA type identifier.
- Returns
The class or default when not found.
- Return type
type
Inherited Properties
Inherited Functions