Module Text3d
source code
The Blender.Text3d submodule.
Text3d Objects
This module provides access to Font objects in Blender.
Example:
import Blender
from Blender import Curve, Object, Scene, Text3d
txt = Text3d.New("MyText") # create a new Text3d object called MyText
scn = Scene.GetCurrent() # get current scene
ob = scn.objects.new(txt) # create an object from the obdata in the current scene
ob.makeDisplayList() # rebuild the display list for this object
Window.RedrawAll()
|
Text3d
This object gives access Blender's Font objects
|
Blender Text3d
|
|
Blender Text3d or a list of Blender Text3d's
|
|
Create a new Text3d object.
- Parameters:
name (string) - The name for the new object..
- Returns: Blender Text3d
- The created Text3d Data object.
|
Get the Text3d object(s) from Blender.
- Parameters:
name (string) - The name of the Text3d object.
- Returns: Blender Text3d or a list of Blender Text3d's
- It depends on the 'name' parameter:
-
(name): The Text3d object with the given name;
-
(): A list with all Text3d objects in the current
scene.
|