ePurityStatus#
- class omni.graph.core.ePurityStatus#
- Bases: - pybind11_object- The purity of the node implementation. For some context, a “pure” node is one whose initialize, compute, and release methods are entirely deterministic, i.e. they will always produce the same output attribute values for a given set of input attribute values, and do not access, rely on, or otherwise mutate data external to the node’s scope - Members: - E_IMPURE : Node is assumed to not be pure - E_PURE : Node can be considered pure if explicitly specified by the node author - Methods - __init__(self, value)- Attributes - E_IMPURE- E_PURE- value- __init__(
- self: omni.graph.core._omni_graph_core.ePurityStatus,
- value: int,
 - property name#