| 61 | } |
| 62 | |
| 63 | void Tr2StateMachineTransition::UpdateDestination() |
| 64 | { |
| 65 | m_destination = m_source->GetStateMachine()->GetStateByName( m_destinationName.c_str() ); |
| 66 | if( !m_destination ) |
| 67 | { |
| 68 | CCP_LOGERR( "Invalid destination state name %s for state machine transition", m_destinationName.c_str() ); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | bool Tr2StateMachineTransition::CanActivate( uint64_t variableDirtyMask ) const |
| 73 | { |
nothing calls this directly
no test coverage detected