| 52 | } |
| 53 | |
| 54 | String VTorque::getAnimation( SceneObjectType *pObject, const U32 &pThreadIndex ) |
| 55 | { |
| 56 | ShapeBase *shape = dynamic_cast<ShapeBase*>( pObject ); |
| 57 | if ( !shape ) |
| 58 | { |
| 59 | // Sanity! |
| 60 | return ""; |
| 61 | } |
| 62 | |
| 63 | // Return Name. |
| 64 | return shape->getThreadSequenceName( pThreadIndex ); |
| 65 | } |
| 66 | |
| 67 | F32 VTorque::getAnimationDuration( SceneObjectType *pObject, const char *pData ) |
| 68 | { |
nothing calls this directly
no test coverage detected