Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/gpencil/gpencil_paint.c
| Context not available. | |||||
| /* change position relative to parent object */ | /* change position relative to parent object */ | ||||
| gpencil_apply_parent(depsgraph, obact, gpl, gps); | gpencil_apply_parent(depsgraph, obact, gpl, gps); | ||||
| /* If camera view or view projection, reproject flat to view to avoid perspective effect. */ | /* If camera view or view projection, reproject flat to view to avoid perspective effect. */ | ||||
| if ((!is_depth) && ((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera) { | if ((!is_depth && (align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera) { | ||||
| ED_gpencil_project_stroke_to_view(p->C, p->gpl, gps); | ED_gpencil_project_stroke_to_view(p->C, p->gpl, gps); | ||||
| } | } | ||||
| Context not available. | |||||