| 71 | } |
| 72 | |
| 73 | void Tr2IntSkinnedObject::PostPhysicsUpdate( Be::Time time, Tr2ApexScene* apexScene ) |
| 74 | { |
| 75 | Tr2SkinnedObject::PostPhysicsUpdate( time, apexScene ); |
| 76 | |
| 77 | m_variableStore->RegisterVariable( "CellReflectionMap", m_cellReflectionMaps[0] ); |
| 78 | m_variableStore->RegisterVariable( "CellReflection2ndMap", m_cellReflectionMaps[1] ); |
| 79 | m_cellReflectionTime += TimeAsFloat( time - m_previousUpdateTime ); |
| 80 | m_variableStore->RegisterVariable( "CellReflectionInterpolation", m_cellReflectionTime ); |
| 81 | m_previousUpdateTime = time; |
| 82 | } |
| 83 | |
| 84 | // -------------------------------------------------------------------------------------- |
| 85 | // Description: |
no test coverage detected