From 16b90eb0caedfa60fcd38064464abb07b1c2df8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lassi=20S=C3=A4ike?= Date: Sun, 7 Jul 2024 15:42:08 +0300 Subject: [PATCH] Bump version and update README --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 5 +++++ plumber/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 54fdc32..6ab390d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -713,7 +713,7 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "plumber" -version = "1.0.2" +version = "1.1.0" dependencies = [ "crossbeam-channel", "float-ord", diff --git a/Cargo.toml b/Cargo.toml index 6811a9c..6478a0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plumber" -version = "1.0.2" +version = "1.1.0" authors = ["Lassi Säike"] edition = "2021" diff --git a/README.md b/README.md index f29ef65..fb62094 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,11 @@ Transforming the 3D sky - The 3D sky is usually clearly outside the main map area and in much smaller scale. - Ensure you have the 3D sky origin (sky_camera) selected as the active object, and press `Object -> Transform VMF 3D sky` to transform the objects into the correct position and scale. +Imported metadata for external scripts / addons +- Some extra metadata is imported as custom properties for Blender 3.0 and above. +- This can be used by external scripts and addons to further process the imported data. +- This includes full paths for props' models and materials as `path_id`, and Source engine-defined properties for entities as `props`. + ### MDL `File -> Import -> Plumber -> Source Model (.mdl)` diff --git a/plumber/__init__.py b/plumber/__init__.py index 7548fe8..10d8d32 100644 --- a/plumber/__init__.py +++ b/plumber/__init__.py @@ -4,7 +4,7 @@ bl_info = { "name": "Plumber", "author": "Lassi Säike", - "version": (1, 0, 2), + "version": (1, 1, 0), "blender": (2, 90, 0), "location": "File > Import -> Plumber", "description": "Imports Source Engine assets.",