-------------------------------------------------------------------------------- Description: Sets the scale of the firing effect using the target's radius. --------------------------------------------------------------------------------
| 3721 | // Sets the scale of the firing effect using the target's radius. |
| 3722 | // -------------------------------------------------------------------------------- |
| 3723 | void EveTurretSet::SetTargetScale() |
| 3724 | { |
| 3725 | if( m_firingEffect ) |
| 3726 | { |
| 3727 | float radius = m_target->GetRadius(); |
| 3728 | m_firingEffect->SetScaleByRadius( radius ); |
| 3729 | } |
| 3730 | } |
| 3731 | |
| 3732 | // -------------------------------------------------------------------------------- |
| 3733 | // Description: |
nothing calls this directly
no test coverage detected