From 050e8a405e5139cf294b97144113337dab66e9be Mon Sep 17 00:00:00 2001 From: Pullusb Date: Wed, 28 Sep 2022 11:10:32 +0200 Subject: [PATCH] X-ray to In Front to match orignal prop name --- README.md | 13 +++++++++++++ README_FR.md | 2 +- UI_tools.py | 2 +- __init__.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e9f1be..798339a 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,19 @@ Since 1.5.2, following _environnement variable_ can set the project properties i `SUFFIXES` : list of suffixes (comma separated uppercase letters of 2 character, ex: 'OL,UL') `SEPARATOR` : Separator character to determine prefixes, default is '_' (should not be a special regex character) +### Expose native functionnality + +The panel expose some attributes that are too "far" in the UI: + +- Zoom 1:1 - Camera view take 100% zoom according to current scene resolution (ops `view3d.zoom_camera_1_to_1`) +- Zoom fit - Adjust view so camera frame takes full viewport spac (ops `view3d.view_center_camera`) + +- In Front - the `In Front` property of the object to get an X-ray view +- passepartout camera - enable/disable + set opacity +- button and sliders to enable / disable / set opacity of single background camera images + +**Edit line opacity** - Il est pratique de pouvoir cacher l'edit line pour avoir un meilleur aperçu du rendu lors du sculpt par exemple. C'est une option lié au layer. Ce slider appelle une fonction pour affecter tout les layers de tout les objets au lieu de se cantonner au layer courant. + ### Passive action An "on save" Handler that trigger relative remap of all path can be enabled in addon prefs (disabled by default). diff --git a/README_FR.md b/README_FR.md index 94a7381..3d2eef7 100644 --- a/README_FR.md +++ b/README_FR.md @@ -37,7 +37,7 @@ Expose les options suivantes: - Zoom fit - Ajuste la vue pour que la cam soit vue en totalité dans l'écran (ops `view3d.view_center_camera`) - Onion skin - coche des overlays - autolock layer - coche du sous-menu de l'UI list des layers -- X-ray - Option `In Front` dans les propriété de l'objet +- In Front - met en avant l'option `In Front` des propriété de l'objet - passepartout de caméra - active-désactive + opactité - liste de boutons pour activer/désactiver les background de caméra (tous ou individuellement) avec icone par type. diff --git a/UI_tools.py b/UI_tools.py index 2a03bcf..a23e30f 100644 --- a/UI_tools.py +++ b/UI_tools.py @@ -142,7 +142,7 @@ class GPTB_PT_sidebar_panel(Panel): if context.object and context.object.type == 'GPENCIL': # col.prop(context.object.data, 'use_autolock_layers') # not often used - col.prop(context.object, 'show_in_front', text='X-ray') # default text "In Front" + col.prop(context.object, 'show_in_front') # text='In Front' ## rename datablock temporary layout if context.object.name != context.object.data.name: diff --git a/__init__.py b/__init__.py index 4f29337..8eaeea9 100755 --- a/__init__.py +++ b/__init__.py @@ -4,7 +4,7 @@ bl_info = { "name": "GP toolbox", "description": "Tool set for Grease Pencil in animation production", "author": "Samuel Bernou, Christophe Seux", -"version": (2, 0, 2), +"version": (2, 0, 3), "blender": (2, 91, 0), "location": "Sidebar (N menu) > Gpencil > Toolbox / Gpencil properties", "warning": "",