forked from bartvdbraak/blender
Style cleanups here
This commit is contained in:
parent
eb6e05b2ce
commit
f161695150
@ -395,11 +395,16 @@ int insert_vert_fcurve(FCurve *fcu, float x, float y, short flag)
|
|||||||
beztr.vec[2][1] = y;
|
beztr.vec[2][1] = y;
|
||||||
beztr.f1 = beztr.f2 = beztr.f3 = SELECT;
|
beztr.f1 = beztr.f2 = beztr.f3 = SELECT;
|
||||||
|
|
||||||
|
/* set default handle types and interpolation mode */
|
||||||
if (flag & INSERTKEY_NO_USERPREF) {
|
if (flag & INSERTKEY_NO_USERPREF) {
|
||||||
|
/* for Py-API, we want scripts to have predictable behaviour,
|
||||||
|
* hence the option to not depend on the userpref defaults
|
||||||
|
*/
|
||||||
beztr.h1 = beztr.h2 = HD_AUTO_ANIM;
|
beztr.h1 = beztr.h2 = HD_AUTO_ANIM;
|
||||||
beztr.ipo = BEZT_IPO_BEZ;
|
beztr.ipo = BEZT_IPO_BEZ;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
/* for UI usage - defaults should come from the */
|
||||||
beztr.h1 = beztr.h2 = U.keyhandles_new; /* use default handle type here */
|
beztr.h1 = beztr.h2 = U.keyhandles_new; /* use default handle type here */
|
||||||
//BEZKEYTYPE(&beztr)= scene->keytype; /* default keyframe type */
|
//BEZKEYTYPE(&beztr)= scene->keytype; /* default keyframe type */
|
||||||
|
|
||||||
@ -407,10 +412,13 @@ int insert_vert_fcurve(FCurve *fcu, float x, float y, short flag)
|
|||||||
beztr.ipo = U.ipo_new;
|
beztr.ipo = U.ipo_new;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fcu->flag & FCURVE_DISCRETE_VALUES)
|
/* interpolation type used is constrained by the type of values the curve can take */
|
||||||
|
if (fcu->flag & FCURVE_DISCRETE_VALUES) {
|
||||||
beztr.ipo = BEZT_IPO_CONST;
|
beztr.ipo = BEZT_IPO_CONST;
|
||||||
else if (beztr.ipo == BEZT_IPO_BEZ && (fcu->flag & FCURVE_INT_VALUES))
|
}
|
||||||
|
else if ((beztr.ipo == BEZT_IPO_BEZ) && (fcu->flag & FCURVE_INT_VALUES)) {
|
||||||
beztr.ipo = BEZT_IPO_LIN;
|
beztr.ipo = BEZT_IPO_LIN;
|
||||||
|
}
|
||||||
|
|
||||||
/* add temp beztriple to keyframes */
|
/* add temp beztriple to keyframes */
|
||||||
a = insert_bezt_fcurve(fcu, &beztr, flag);
|
a = insert_bezt_fcurve(fcu, &beztr, flag);
|
||||||
|
Loading…
Reference in New Issue
Block a user