| 605 | |
| 606 | |
| 607 | void Tr2GStateAnimation::SetStartStateByName( const std::string& name ) |
| 608 | { |
| 609 | #if GrannyProductMajorVersion > 2 || ( GrannyProductMajorVersion == 2 && GrannyProductMinorVersion >= 11 ) |
| 610 | m_state_machine->SetStartState( m_state_machine->GetStateByName( name.c_str() ) ); |
| 611 | #else |
| 612 | CCP_LOGERR( "SetStartStateByName: outdated Granny version" ); |
| 613 | #endif |
| 614 | } |
| 615 | |
| 616 | bool Tr2GStateAnimation::ForceChangeToState( const std::string& name ) |
| 617 | { |
nothing calls this directly
no test coverage detected