| 63 | } |
| 64 | } |
| 65 | |
| 66 | void BaseNode::PostDeserialize( TypeSystem::TypeRegistry const& typeRegistry ) |
| 67 | { |
| 68 | IReflectedType::PostDeserialize( typeRegistry ); |
| 69 | UpdateChildGraphAndSecondaryGraphParents(); |
| 70 | } |
| 71 | |
| 72 | void BaseNode::Destroy() |
| 73 | { |
| 74 | EE_ASSERT( HasParentGraph() ); |
| 75 | GetParentGraph()->DestroyNode( m_ID ); |
| 76 | } |
| 77 | |
| 78 | BaseGraph* BaseNode::GetRootGraph() |
| 79 | { |
| 80 | BaseGraph* pRootGraph = nullptr; |
| 81 |
no test coverage detected