-----------------------------------------------------------------------
| 1489 | } |
| 1490 | //----------------------------------------------------------------------- |
| 1491 | String ParticleSystem::CmdCull::doGet( const void *target ) const |
| 1492 | { |
| 1493 | return StringConverter::toString( |
| 1494 | static_cast<const ParticleSystem *>( target )->getCullIndividually() ); |
| 1495 | } |
| 1496 | void ParticleSystem::CmdCull::doSet( void *target, const String &val ) |
| 1497 | { |
| 1498 | static_cast<ParticleSystem *>( target )->setCullIndividually( |
nothing calls this directly
no test coverage detected