Home | Trees | Indices | Help |
|
---|
|
object --+ | utils.graph.DetailNode --+ | object_models.xml.basic.BasicBase --+ | NifFormat.Ref --+ | NifFormat.Ptr
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from Inherited from |
|
|||
_is_template = True
|
|||
_has_links = True
|
|||
_has_refs = False
|
|||
Inherited from Inherited from |
|
|||
Inherited from |
|
|
|
|
|
|
>>> from pyffi.formats.nif import NifFormat >>> x = NifFormat.NiNode() >>> y = NifFormat.NiNode() >>> z = NifFormat.NiNode() >>> x.add_child(y) >>> x.children[0] is y True >>> x.children[0] is z False >>> x.replace_global_node(y, z) >>> x.children[0] is y False >>> x.children[0] is z True >>> x.replace_global_node(z, None) >>> x.children[0] is None True
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Oct 10 19:03:50 2011 | http://epydoc.sourceforge.net |