GPencil: Change default Stroke thickness when convert curves

The thickness by default was using the old Draw Engine values and it was too thick in new engine.
This commit is contained in:
Antonio Vazquez 2020-08-10 15:32:35 +02:00
parent 3a3dc45e7b
commit 3fe2fceb4e
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ static void gpencil_convert_spline(Main *bmain,
/* Create Stroke. */
bGPDstroke *gps = MEM_callocN(sizeof(bGPDstroke), "bGPDstroke");
gps->thickness = 10.0f;
gps->thickness = 1.0f;
gps->fill_opacity_fac = 1.0f;
gps->hardeness = 1.0f;
gps->uv_scale = 1.0f;