-
Notifications
You must be signed in to change notification settings - Fork 9
Parenting
Dealga McArdle edited this page Nov 22, 2015
·
3 revisions
More examples of parenting, with respect to dupliverts / duplifaces.
If you want to parent one object to another, don't use bpy.ops, use the .parent attribute instead. For example if you have a Cube and want it to be the parent of a Sphere.
objects = bpy.data.objects
cube = objects['Cube']
sphere = objects['Sphere']
sphere.parent = cubeIntroduction
Objects / Mesh / BMesh
- Empty - null object
- Mesh
- Bmesh
- bmesh.ops - primitives
- bmesh.ops - mesh opsπ§
- Curves (2d, 3d)
- Text (Font Objects)
- Duplication (instancing)
- Metaballs
Time and Motion
- scripted keyframesπ
- Event Handlersπ
- Drivers
Miscellaneous bpy.data.*
Order / Organization
- Groupingπ
- Parentingπ
- Layers
- UI / Layoutπ
Miscellaneous
- Mathutilsπ
- Modifiersπ
- Particle Systemsπ
- vertex colorsπ
- Textures UV DPI
- Propertiesπ§
- Operators (and callbacks)π§
- bgl / blfπ
- Grease Pencil
- Themes
- Areas
Add-ons
- introductionπ
- import / exportπ
- Text Editorπ
- Custom Nodesπ