Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-01-24 16:19:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-24 16:19:05 +0300
commit2275bac468132a9e3b82e3b2d1138a86e4294a86 (patch)
tree207158bb4a2bd0f307f16ced540fe7fd6c9b7a10 /space_view3d_copy_attributes.py
parent52efcbc744959deb4c36e2c723b63d8cc49e946d (diff)
changes Operator names for new, stricter checking.
Diffstat (limited to 'space_view3d_copy_attributes.py')
-rw-r--r--space_view3d_copy_attributes.py62
1 files changed, 31 insertions, 31 deletions
diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index fb9dc518..f825ba7d 100644
--- a/space_view3d_copy_attributes.py
+++ b/space_view3d_copy_attributes.py
@@ -192,25 +192,25 @@ def pConExec(bone, active, context):
def pIKsExec(bone, active, context):
generic_copy(active, bone, "ik_")
-pose_copies = (('POSE_LOC_LOC', "Local Location",
+pose_copies = (('pose_loc_loc', "Local Location",
"Copy Location from Active to Selected", pLocLocExec),
- ('POSE_LOC_ROT', "Local Rotation",
+ ('pose_loc_rot', "Local Rotation",
"Copy Rotation from Active to Selected", pLocRotExec),
- ('POSE_LOC_SCA', "Local Scale",
+ ('pose_loc_sca', "Local Scale",
"Copy Scale from Active to Selected", pLocScaExec),
- ('POSE_VIS_LOC', "Visual Location",
+ ('pose_vis_loc', "Visual Location",
"Copy Location from Active to Selected", pVisLocExec),
- ('POSE_VIS_ROT', "Visual Rotation",
+ ('pose_vis_rot', "Visual Rotation",
"Copy Rotation from Active to Selected", pVisRotExec),
- ('POSE_VIS_SCA', "Visual Scale",
+ ('pose_vis_sca', "Visual Scale",
"Copy Scale from Active to Selected", pVisScaExec),
- ('POSE_DRW', "Bone Shape",
+ ('pose_drw', "Bone Shape",
"Copy Bone Shape from Active to Selected", pDrwExec),
- ('POSE_LOK', "Protected Transform",
+ ('pose_lok', "Protected Transform",
"Copy Protected Tranforms from Active to Selected", pLokExec),
- ('POSE_CON', "Bone Constraints",
+ ('pose_con', "Bone Constraints",
"Copy Object Constraints from Active to Selected", pConExec),
- ('POSE_IKS', "IK Limits",
+ ('pose_iks', "IK Limits",
"Copy IK Limits from Active to Selected", pIKsExec))
@@ -422,47 +422,47 @@ def obWei(ob, active, context):
vgroupIndex_weight[i][1], "REPLACE")
return('INFO', "weights copied")
-object_copies = (('OBJ_LOC', "Location",
+object_copies = (('obj_loc', "Location",
"Copy Location from Active to Selected", obLoc),
- ('OBJ_ROT', "Rotation",
+ ('obj_rot', "Rotation",
"Copy Rotation from Active to Selected", obRot),
- ('OBJ_SCA', "Scale",
+ ('obj_sca', "Scale",
"Copy Scale from Active to Selected", obSca),
- ('OBJ_DRW', "Draw Options",
+ ('obj_drw', "Draw Options",
"Copy Draw Options from Active to Selected", obDrw),
- ('OBJ_OFS', "Time Offset",
+ ('obj_ofs', "Time Offset",
"Copy Time Offset from Active to Selected", obOfs),
- ('OBJ_DUP', "Dupli",
+ ('obj_dup', "Dupli",
"Copy Dupli from Active to Selected", obDup),
- ('OBJ_COL', "Object Color",
+ ('obj_col', "Object Color",
"Copy Object Color from Active to Selected", obCol),
- ('OBJ_MAS', "Mass",
+ ('obj_mas', "Mass",
"Copy Mass from Active to Selected", obMas),
- #('OBJ_DMP', "Damping",
+ #('obj_dmp', "Damping",
#"Copy Damping from Active to Selected"),
- #('OBJ_ALL', "All Physical Attributes",
+ #('obj_all', "All Physical Attributes",
#"Copy Physical Atributes from Active to Selected"),
- #('OBJ_PRP', "Properties",
+ #('obj_prp', "Properties",
#"Copy Properties from Active to Selected"),
- #('OBJ_LOG', "Logic Bricks",
+ #('obj_log', "Logic Bricks",
#"Copy Logic Bricks from Active to Selected"),
- ('OBJ_LOK', "Protected Transform",
+ ('obj_lok', "Protected Transform",
"Copy Protected Tranforms from Active to Selected", obLok),
- ('OBJ_CON', "Object Constraints",
+ ('obj_con', "Object Constraints",
"Copy Object Constraints from Active to Selected", obCon),
- #('OBJ_NLA', "NLA Strips",
+ #('obj_nla', "NLA Strips",
#"Copy NLA Strips from Active to Selected"),
- #('OBJ_TEX', "Texture Space",
+ #('obj_tex', "Texture Space",
#"Copy Texture Space from Active to Selected", obTex),
- #('OBJ_SUB', "Subsurf Settings",
+ #('obj_sub', "Subsurf Settings",
#"Copy Subsurf Setings from Active to Selected"),
- #('OBJ_SMO', "AutoSmooth",
+ #('obj_smo', "AutoSmooth",
#"Copy AutoSmooth from Active to Selected"),
- ('OBJ_IDX', "Pass Index",
+ ('obj_idx', "Pass Index",
"Copy Pass Index from Active to Selected", obIdx),
- ('OBJ_MOD', "Modifiers",
+ ('obj_mod', "Modifiers",
"Copy Modifiers from Active to Selected", obMod),
- ('OBJ_WEI', "Vertex Weights",
+ ('obj_wei', "Vertex Weights",
"Copy vertex weights based on indices", obWei))