From 2a87e98904143381786f1a3074ddfb680507258c Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Thu, 5 Jan 2023 10:32:46 +0800 Subject: [PATCH] add lost group Shadow. fix README typo --- README.md | 2 +- ballance_blender_plugin/UTILS_constants.py | 4 +++- ballance_blender_plugin/__init__.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fa590d0..a6f0777 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Put `ballance_blender_plugin` into Blender's plugin folder, `scripts/addons_cont Temp Texture Folder does not allow files with duplicated name. Because of this, imagine this situation, there are two texture files with the same name in two BM files, but they represent different images. When you import them one by one for different maps. The later file will overwrite the previous file, And this will cause a texture error when the first Blender document was opened again. For the solution of this issue, the best way is to force packaging once. After successfully importing the BM, click `File - External Data - Pack Resources`, then you can clear Temp Texture Folder safely. With your preference, you also can click `File - External Data - Unpack Resources` to extract textures. This operation will extract and re-refer all textures into standalone texture folder within the folder where this Blender document is. -### BM import / export +### BM Import / Export Click `File - Import - Ballance Map` to import BM file. When name conflicts occur during importing BM, you have ability to choose different strategies for 4 different data types, Texture, Material, Mesh and Object. You can specify them to create a new instance or use current data block. diff --git a/ballance_blender_plugin/UTILS_constants.py b/ballance_blender_plugin/UTILS_constants.py index d2aa2dc..ab0397b 100644 --- a/ballance_blender_plugin/UTILS_constants.py +++ b/ballance_blender_plugin/UTILS_constants.py @@ -353,7 +353,9 @@ propsVtGroups_availableGroups = ( "Phys_Floors", "Phys_FloorRails", - "Phys_FloorStopper" + "Phys_FloorStopper", + + "Shadow" ) diff --git a/ballance_blender_plugin/__init__.py b/ballance_blender_plugin/__init__.py index b3891f6..9d443b9 100644 --- a/ballance_blender_plugin/__init__.py +++ b/ballance_blender_plugin/__init__.py @@ -3,7 +3,7 @@ bl_info={ "description":"Ballance mapping tools for Blender", "author":"yyc12345", "version":(3,0), - "blender":(2,83,0), + "blender":(3,3,0), "category":"Object", "support":"TESTING", "warning": "Please read document before using this plugin.",