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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2006-01-02 13:40:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-01-02 13:40:13 +0300
commit8b0c3de7d9791646c09a002b14afc21d6b3da5ae (patch)
tree74283cda538fcf164099cbf5824ab2e4094fafd0 /source/blender/include/BDR_editobject.h
parent362c8baac402a069367901f53cb2c8d4e2f75c4b (diff)
Changed adduplicate() to take the dupflags as an argument. so faking the Alt Key isnt needed anymore in Blender or python.
Changed Pythons Object.Duplicate() to take keyword parms to enable duplication of spesific data. Eg- Object.Duplicate(mesh=1) # to duplicate mesh data also.
Diffstat (limited to 'source/blender/include/BDR_editobject.h')
-rw-r--r--source/blender/include/BDR_editobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/include/BDR_editobject.h b/source/blender/include/BDR_editobject.h
index 99c9655a763..27c23b22ca3 100644
--- a/source/blender/include/BDR_editobject.h
+++ b/source/blender/include/BDR_editobject.h
@@ -92,7 +92,7 @@ void single_tex_users_expand(void);
void single_mat_users_expand(void);
void single_user(void);
void make_local(void);
-void adduplicate(int noTrans);
+void adduplicate(int noTrans, int dupflag); /* when the dupflag is 0 no data is duplicated */
void selectlinks_menu(void);
void selectlinks(int nr);
void image_aspect(void);