create_child_node method
Contents
[
Hide
]create_child_node(self)
Creates a child node
Returns
The new child node.
def create_child_node(self):
...
Example
The following code shows how to create a new child node under root node
from aspose.threed import Scene
from aspose.threed.entities import Box
scene = Scene()
node = scene.root_node.create_child_node()
node.entity = Box()
scene.save("output.fbx")
create_child_node(self, node_name)
Create a new child node with given node name
Returns
The new child node.
def create_child_node(self, node_name):
...
Parameter | Type | Description |
---|---|---|
node_name | str | The new child node’s name |
Example
The following code shows how to create a new child node under root node
from aspose.threed import Scene
from aspose.threed.entities import Box
scene = Scene()
node = scene.root_node.create_child_node("new node")
node.entity = Box()
scene.save("output.fbx")
create_child_node(self, entity)
Create a new child node with given entity attached
Returns
The new child node.
def create_child_node(self, entity):
...
Parameter | Type | Description |
---|---|---|
entity | Entity | Default entity attached to the node |
Example
The following code shows how to create a new child node under root node
from aspose.threed import Scene
from aspose.threed.entities import Box
scene = Scene()
node = scene.root_node.create_child_node(Box())
scene.save("output.fbx")
create_child_node(self, node_name, entity)
Create a new child node with given node name
Returns
The new child node.
def create_child_node(self, node_name, entity):
...
Parameter | Type | Description |
---|---|---|
node_name | str | The new child node’s name |
entity | Entity | Default entity attached to the node |
create_child_node(self, node_name, entity, material)
Create a new child node with given node name, and attach specified entity and a material
Returns
The new child node.
def create_child_node(self, node_name, entity, material):
...
Parameter | Type | Description |
---|---|---|
node_name | str | The new child node’s name |
entity | Entity | Default entity attached to the node |
material | aspose.threed.shading.Material | The material attached to the node |
See Also
- module
aspose.threed
- class
Node