OpenRCT2-ObjectCommon 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/PKG-INFO +1 -1
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/blender/modal.py +5 -1
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/pyproject.toml +1 -1
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/.github/workflows/lint.yml +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/.github/workflows/publish.yml +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/.github/workflows/pytest.yml +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/.gitignore +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/.yamllint.yaml +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/LICENSE +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/README.md +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/__init__.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/blender/__init__.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/blender/lights.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/cli.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/config.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/objectjson.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/parkobj.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/placement.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/py.typed +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/scripts/ci/set_version.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/tests/test_objectjson.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/tests/test_parkobj.py +0 -0
- {openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/tests/test_placement.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: OpenRCT2-ObjectCommon
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Shared config, CLI, .parkobj, and object.json scaffolding for OpenRCT2 object generators.
|
|
5
5
|
Project-URL: Homepage, https://github.com/alex-parisi/OpenRCT2-ObjectCommon
|
|
6
6
|
Project-URL: Repository, https://github.com/alex-parisi/OpenRCT2-ObjectCommon
|
{openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/blender/modal.py
RENAMED
|
@@ -51,7 +51,11 @@ class RenderModalBase(Operator):
|
|
|
51
51
|
|
|
52
52
|
_status_verb = "Working"
|
|
53
53
|
_invalid_prefix = "Invalid object"
|
|
54
|
-
|
|
54
|
+
# Plain assignment, NOT an annotation: Blender's register_class() scans
|
|
55
|
+
# `__annotations__` across the MRO for bpy properties, and an annotated
|
|
56
|
+
# non-property class attribute here can trip subclass registration. Value is
|
|
57
|
+
# a tuple[type[Exception], ...] of build-error types reported verbatim.
|
|
58
|
+
_clean_error_types = ()
|
|
55
59
|
|
|
56
60
|
# -- hooks ---------------------------------------------------------------
|
|
57
61
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/blender/lights.py
RENAMED
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/config.py
RENAMED
|
File without changes
|
{openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/objectjson.py
RENAMED
|
File without changes
|
{openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/parkobj.py
RENAMED
|
File without changes
|
{openrct2_objectcommon-0.1.0 → openrct2_objectcommon-0.1.1}/openrct2_object_common/placement.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|