Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_particle.py
| Show First 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | def draw(self, _context): | ||||
| props = layout.operator( | props = layout.operator( | ||||
| "particle.copy_particle_systems", | "particle.copy_particle_systems", | ||||
| text="Copy All to Selected Objects", | text="Copy All to Selected Objects", | ||||
| ) | ) | ||||
| props.use_active = False | props.use_active = False | ||||
| props.remove_target_particles = True | props.remove_target_particles = True | ||||
| layout.operator( | |||||
| "curves.convert_from_particle_system", | |||||
| text="Convert to Curves") | |||||
| layout.separator() | layout.separator() | ||||
| layout.operator( | layout.operator( | ||||
| "particle.duplicate_particle_system", | "particle.duplicate_particle_system", | ||||
| icon='DUPLICATE', | icon='DUPLICATE', | ||||
| ) | ) | ||||
| ▲ Show 20 Lines • Show All 1,978 Lines • Show Last 20 Lines | |||||