| 217 | |
| 218 | m_modificationCount--; |
| 219 | EE_ASSERT( m_modificationCount >= 0 ); |
| 220 | |
| 221 | // Parent graphs should only be null during construction |
| 222 | if ( m_pParentGraph != nullptr ) |
| 223 | { |
| 224 | m_pParentGraph->EndModification(); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | void BaseNode::SetPosition( Float2 const& newPosition ) |
no test coverage detected