Cleanup: remove deprecated flag use in collada
This commit is contained in:
@@ -58,7 +58,7 @@ template<class T> static const char *bc_get_joint_name(T *node)
|
||||
FCurve *AnimationImporter::create_fcurve(int array_index, const char *rna_path)
|
||||
{
|
||||
FCurve *fcu = BKE_fcurve_create();
|
||||
fcu->flag = (FCURVE_VISIBLE | FCURVE_AUTO_HANDLES | FCURVE_SELECTED);
|
||||
fcu->flag = (FCURVE_VISIBLE | FCURVE_SELECTED);
|
||||
fcu->rna_path = BLI_strdupn(rna_path, strlen(rna_path));
|
||||
fcu->array_index = array_index;
|
||||
return fcu;
|
||||
@@ -102,7 +102,7 @@ void AnimationImporter::animation_to_fcurves(COLLADAFW::AnimationCurve *curve)
|
||||
for (i = 0; i < dim; i++) {
|
||||
FCurve *fcu = BKE_fcurve_create();
|
||||
|
||||
fcu->flag = (FCURVE_VISIBLE | FCURVE_AUTO_HANDLES | FCURVE_SELECTED);
|
||||
fcu->flag = (FCURVE_VISIBLE | FCURVE_SELECTED);
|
||||
fcu->array_index = 0;
|
||||
fcu->auto_smoothing = U.auto_smoothing_new;
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@ void BCAnimationCurve::delete_fcurve(FCurve *fcu)
|
||||
FCurve *BCAnimationCurve::create_fcurve(int array_index, const char *rna_path)
|
||||
{
|
||||
FCurve *fcu = BKE_fcurve_create();
|
||||
fcu->flag = (FCURVE_VISIBLE | FCURVE_AUTO_HANDLES | FCURVE_SELECTED);
|
||||
fcu->flag = (FCURVE_VISIBLE | FCURVE_SELECTED);
|
||||
fcu->rna_path = BLI_strdupn(rna_path, strlen(rna_path));
|
||||
fcu->array_index = array_index;
|
||||
return fcu;
|
||||
|
||||
@@ -658,9 +658,10 @@ typedef enum eFCurve_Flags {
|
||||
/** FCurve will not be evaluated for the next round. */
|
||||
FCURVE_MUTED = (1 << 4),
|
||||
|
||||
#ifdef DNA_DEPRECATED_ALLOW
|
||||
/** fcurve uses 'auto-handles', which stay horizontal... */
|
||||
// DEPRECATED
|
||||
FCURVE_AUTO_HANDLES = (1 << 5),
|
||||
FCURVE_AUTO_HANDLES = (1 << 5), /* Dirty. */
|
||||
#endif
|
||||
FCURVE_MOD_OFF = (1 << 6),
|
||||
/** skip evaluation, as RNA-path cannot be resolved
|
||||
* (similar to muting, but cannot be set by user) */
|
||||
|
||||
Reference in New Issue
Block a user