~ubuntu-branches/ubuntu/saucy/blender/saucy-proposed

« back to all changes in this revision

Viewing changes to release/scripts/addons/object_fracture/fracture_ops.py

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
341
341
 
342
342
 
343
343
class FractureSimple(bpy.types.Operator):
344
 
    '''Split object with boolean operations for simulation, uses an object'''
 
344
    """Split object with boolean operations for simulation, uses an object"""
345
345
    bl_idname = "object.fracture_simple"
346
346
    bl_label = "Fracture Object"
347
347
    bl_options = {'REGISTER', 'UNDO'}
387
387
 
388
388
 
389
389
class FractureGroup(bpy.types.Operator):
390
 
    '''Split object with boolean operations for simulation, uses a group'''
 
390
    """Split object with boolean operations for simulation, uses a group"""
391
391
    bl_idname = "object.fracture_group"
392
392
    bl_label = "Fracture Object (Group)"
393
393
    bl_options = {'REGISTER', 'UNDO'}
447
447
 
448
448
 
449
449
class ImportFractureRecorder(bpy.types.Operator):
450
 
    '''Imports a rigidbody recorder'''
 
450
    """Imports a rigidbody recorder"""
451
451
    bl_idname = "object.import_fracture_recorder"
452
452
    bl_label = "Add Rigidbody Recorder (Fracture)"
453
453
    bl_options = {'REGISTER', 'UNDO'}
459
459
 
460
460
 
461
461
class ImportFractureBomb(bpy.types.Operator):
462
 
    '''Import a bomb'''
 
462
    """Import a bomb"""
463
463
    bl_idname = "object.import_fracture_bomb"
464
464
    bl_label = "Add Bomb (Fracture)"
465
465
    bl_options = {'REGISTER', 'UNDO'}
471
471
 
472
472
 
473
473
class ImportFractureProjectile(bpy.types.Operator, ):
474
 
    '''Imports a projectile'''
 
474
    """Imports a projectile"""
475
475
    bl_idname = "object.import_fracture_projectile"
476
476
    bl_label = "Add Projectile (Fracture)"
477
477
    bl_options = {'REGISTER', 'UNDO'}