Skip to content

Commit

Permalink
Remove cone emitter.
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perseghetti <[email protected]>
  • Loading branch information
bperseghetti committed Jun 14, 2024
1 parent 6d352ee commit 9f7e20d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions src/Conversions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1662,9 +1662,6 @@ msgs::ParticleEmitter gz::sim::convert(const sdf::ParticleEmitter &_in)
case sdf::ParticleEmitterType::CYLINDER:
out.set_type(msgs::ParticleEmitter::CYLINDER);
break;
case sdf::ParticleEmitterType::CONE:
out.set_type(msgs::ParticleEmitter::CONE);
break;
case sdf::ParticleEmitterType::ELLIPSOID:
out.set_type(msgs::ParticleEmitter::ELLIPSOID);
break;
Expand Down
5 changes: 0 additions & 5 deletions src/rendering/SceneManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1586,11 +1586,6 @@ rendering::ParticleEmitterPtr SceneManager::UpdateParticleEmitter(Entity _id,
emitter->SetType(gz::rendering::EmitterType::EM_BOX);
break;
}
case gz::msgs::ParticleEmitter_EmitterType_CONE:
{
emitter->SetType(gz::rendering::EmitterType::EM_CONE);
break;
}
case gz::msgs::ParticleEmitter_EmitterType_CYLINDER:
{
emitter->SetType(gz::rendering::EmitterType::EM_CYLINDER);
Expand Down

0 comments on commit 9f7e20d

Please sign in to comment.