diff --git a/.vscode/launch.json b/.vscode/launch.json index 826159a..9bef1db 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -35,7 +35,7 @@ "request": "launch", "module": "zlm_ui", "args": [ - "406", + "414", "${workspaceFolder}\\dist\\ZlmData\\layers.TXT" ], "envFile": "${workspaceFolder}/.env", diff --git a/doc_src/conf.py b/doc_src/conf.py index 6a4dd83..1575c96 100644 --- a/doc_src/conf.py +++ b/doc_src/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '1.10' # The full version, including alpha/beta/rc tags -release = '1.10.0' +release = '1.10.1' # -- General configuration --------------------------------------------------- diff --git a/src/version.py b/src/version.py index 63e1739..9907443 100644 --- a/src/version.py +++ b/src/version.py @@ -3,7 +3,7 @@ import re -current_version = "1.10.0" +current_version = "1.10.1" def get_version() -> Tuple[int, int, int]: diff --git a/src/zlm_to_zbrush.py b/src/zlm_to_zbrush.py index ccba983..44d962c 100644 --- a/src/zlm_to_zbrush.py +++ b/src/zlm_to_zbrush.py @@ -149,9 +149,9 @@ def _update_mesh(file_path, vertex_count, layer=None, create_layer=False): # zsc.SetLayerMode(layer) # Deactive any active layers - for layer in zlm_core.main_layers.layers_it(exclude_record=False, - backward=True): - zsc.SetLayerMode(layer.zbrush_index(), 0, 1.0) + for _layer in zlm_core.main_layers.layers_it(exclude_record=False, + backward=True): + zsc.SetLayerMode(_layer.zbrush_index(), 0, 1.0) # if layer is specified set this layer mode to record: if layer is not None: