SceneObject
Overview
SceneObject is a class in Aspose.3D FOSS for Python.
Inherits from: A3DObject.
SceneObject provides find_property, get_property, and set_property methods to manage custom metadata attached to any scene object.
This class declares 5 methods for SceneObject objects in Python programs.
Available methods include: __init__, find_property, get_property, remove_property, set_property.
All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package.
Properties: name, properties, scene.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
scene | `` | Read/Write | Gets or sets the scene. |
name | str | Read/Write | Gets or sets the name. |
properties | PropertyCollection | Read | Gets the properties. |
Methods
| Signature | Description |
|---|---|
__init__(name: str) | Calls init(name) on this SceneObject instance. |
find_property(property_name: str) | Calls find_property(property_name) on this SceneObject instance. |
get_property(property: str) | Calls get_property(property) on this SceneObject instance. |
set_property(property: str, value) | Sets the property value. |
remove_property(property) | Calls remove_property(property) on this SceneObject instance. |