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:
authorNathan Letwory <nathan@letworyinteractive.com>2004-08-14 13:20:38 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2004-08-14 13:20:38 +0400
commit2ea5ce017ecdce26bdd78ef5fed198d929311add (patch)
tree1a8eda8d536122d491f4675b19a4c0a91da33d0a /source/blender/src/editkey.c
parent012854ae9323aadc4b0345c9ebd3260a636dd85b (diff)
Fix two problems in my code as reported on Forums and in release article thread on frontpage:
* Quaternion action ipos accidently got swapped in the Ipo module * Ipos not editable if not linked to a datablock (was possible in 2.33a) Also fixed a typo in Object.getMatrix(): localespace -> localspace And I add: * channels Key 32 through Key 63 for relative vertex keys
Diffstat (limited to 'source/blender/src/editkey.c')
-rw-r--r--source/blender/src/editkey.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/source/blender/src/editkey.c b/source/blender/src/editkey.c
index 4a13bd10cc9..8bd59134206 100644
--- a/source/blender/src/editkey.c
+++ b/source/blender/src/editkey.c
@@ -90,7 +90,11 @@
extern ListBase editNurb; /* in editcurve.c */
/* temporary storage for slider values */
-float meshslidervals[32] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
+float meshslidervals[64] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
+ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
+ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
+ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
+ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0};
@@ -254,7 +258,11 @@ void make_rvk_slider(uiBlock *block, Key *key, int keynum,
static int keynums[] = {0,1,2,3,4,5,6,7,
8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,
- 24,25,26,27,28,29,30,31};
+ 24,25,26,27,28,29,30,31,
+ 32,33,34,35,36,37,38,39,
+ 40,41,42,43,44,45,46,47,
+ 48,49,50,51,52,53,54,55,
+ 56,57,58,59,60,61,62,63};
meshslidervals[keynum] = getrvkval(key, keynum);