| 37 | } |
| 38 | |
| 39 | void Tr2ActionPlayCurveSet::Stop( ITr2ActionController& controller ) |
| 40 | { |
| 41 | controller.UnRegisterUpdateable( *this ); |
| 42 | if( auto owner = dynamic_cast<ITr2CurveSetOwner*>( controller.GetOwner() ) ) |
| 43 | { |
| 44 | owner->StopCurveSet( m_curveSetName ); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | void Tr2ActionPlayCurveSet::RebaseSimTime( Be::Time diff ) |
| 49 | { |
nothing calls this directly
no test coverage detected