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:
authorJoshua Leung <aligorith@gmail.com>2010-03-24 15:48:03 +0300
committerJoshua Leung <aligorith@gmail.com>2010-03-24 15:48:03 +0300
commit230a2e62f09f3e9c18aa585231985023a7c270bb (patch)
tree5d2a415f08d4ee1886bd961b9920450d9edf836b /source/blender/editors/include/ED_keyframing.h
parent094098fa9d8caba99376e6b33dd607c8a0ece448 (diff)
Keying Sets - PyAPI consistency issues:
* Added 'id_name' property, which is used as the "typeinfo_name" by Keying Set instances. This is simply the name of the relevant KeyingSetInfo classes. * Renamed the 'array_index' arg for ks.add_path() to 'index'. Also removed the 'entire array' toggle arg in favour of just passing -1 to index. However, Keying Sets in general still maintain their 'entire array' toggle flags for now, it's just that the API function does conversion between the two.
Diffstat (limited to 'source/blender/editors/include/ED_keyframing.h')
-rw-r--r--source/blender/editors/include/ED_keyframing.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_keyframing.h b/source/blender/editors/include/ED_keyframing.h
index b1407ac8f2e..92e9c541b6a 100644
--- a/source/blender/editors/include/ED_keyframing.h
+++ b/source/blender/editors/include/ED_keyframing.h
@@ -125,6 +125,8 @@ typedef struct KeyingSetInfo {
/* info */
/* identifier so that user can hook this up to a KeyingSet */
char name[64];
+ /* identifier used for class name, which KeyingSet instances reference as "Typeinfo Name" */
+ char idname[64];
/* keying settings */
short keyingflag;