[Bf-blender-cvs] [2f36df9f378] greasepencil-object: Merge branch 'master' into greasepencil-object

Antonioya noreply at git.blender.org
Mon Apr 15 10:35:41 CEST 2019


Commit: 2f36df9f378bffa08b43a0106c750207321a4fec
Author: Antonioya
Date:   Mon Apr 15 09:50:08 2019 +0200
Branches: greasepencil-object
https://developer.blender.org/rB2f36df9f378bffa08b43a0106c750207321a4fec

Merge branch 'master' into greasepencil-object

===================================================================



===================================================================

diff --cc source/blender/blenloader/intern/versioning_280.c
index 01e40b7625d,ce2345b44db..4548aac480b
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@@ -3085,36 -3078,40 +3079,68 @@@ void blo_do_versions_280(FileData *fd, 
  				}
  			}
  		}
 +
 +		/* init grease pencil brush gradients */
 +		if (!DNA_struct_elem_find(fd->filesdna, "BrushGpencilSettings", "float", "gradient_f")) {
 +			for (Brush *brush = bmain->brushes.first; brush; brush = brush->id.next) {
 +				if (brush->gpencil_settings != NULL) {
 +					BrushGpencilSettings *gp = brush->gpencil_settings;
 +					gp->gradient_f = 1.0f;
 +					gp->gradient_s[0] = 1.0f;
 +					gp->gradient_s[1] = 1.0f;
 +				}
 +			}
 +		}
 +
 +		/* init grease pencil stroke gradients */
 +		if (!DNA_struct_elem_find(fd->filesdna, "bGPDstroke", "float", "gradient_f")) {
 +			for (bGPdata *gpd = bmain->gpencils.first; gpd; gpd = gpd->id.next) {
 +				for (bGPDlayer *gpl = gpd->layers.first; gpl; gpl = gpl->next) {
 +					for (bGPDframe *gpf = gpl->frames.first; gpf; gpf = gpf->next) {
 +						for (bGPDstroke *gps = gpf->strokes.first; gps; gps = gps->next) {
 +							gps->gradient_f = 1.0f;
 +							gps->gradient_s[0] = 1.0f;
 +							gps->gradient_s[1] = 1.0f;
 +						}
 +					}
 +				}
 +			}
 +		}
 +
  	}
  
+ 	if (!MAIN_VERSION_ATLEAST(bmain, 280, 56)) {
+ 		for (bScreen *screen = bmain->screens.first; screen; screen = screen->id.next) {
+ 			for (ScrArea *area = screen->areabase.first; area; area = area->next) {
+ 				for (SpaceLink *sl = area->spacedata.first; sl; sl = sl->next) {
+ 					if (sl->spacetype == SPACE_VIEW3D) {
+ 						View3D *v3d = (View3D *)sl;
+ 						v3d->gizmo_show_armature = V3D_GIZMO_SHOW_ARMATURE_BBONE | V3D_GIZMO_SHOW_ARMATURE_ROLL;
+ 						v3d->gizmo_show_empty = V3D_GIZMO_SHOW_EMPTY_IMAGE | V3D_GIZMO_SHOW_EMPTY_FORCE_FIELD;
+ 						v3d->gizmo_show_light = V3D_GIZMO_SHOW_LIGHT_SIZE | V3D_GIZMO_SHOW_LIGHT_LOOK_AT;
+ 						v3d->gizmo_show_camera = V3D_GIZMO_SHOW_CAMERA_LENS | V3D_GIZMO_SHOW_CAMERA_DOF_DIST;
+ 					}
+ 				}
+ 			}
+ 		}
+ 	}
+ 
+ 	if (!MAIN_VERSION_ATLEAST(bmain, 280, 57)) {
+ 		/* Enable Show Interpolation in dopesheet by default. */
+ 		for (bScreen *screen = bmain->screens.first; screen; screen = screen->id.next) {
+ 			for (ScrArea *sa = screen->areabase.first; sa; sa = sa->next) {
+ 				for (SpaceLink *sl = sa->spacedata.first; sl; sl = sl->next) {
+ 					if (sl->spacetype == SPACE_ACTION) {
+ 						SpaceAction *saction = (SpaceAction *)sl;
+ 						if ((saction->flag & SACTION_SHOW_EXTREMES) == 0) {
+ 							saction->flag |= SACTION_SHOW_INTERPOLATION;
+ 						}
+ 					}
+ 				}
+ 			}
+ 		}
+ 	}
+ 
  	{
  		/* Versioning code until next subversion bump goes here. */
  	}



More information about the Bf-blender-cvs mailing list