OpenRCT2-ObjectCommon 0.2.3__tar.gz → 0.2.4__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.2.3 → openrct2_objectcommon-0.2.4}/PKG-INFO +2 -2
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/props.py +5 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/pyproject.toml +2 -2
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/test_blender_shared.py +3 -1
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/.github/workflows/lint.yml +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/.github/workflows/publish.yml +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/.github/workflows/pytest.yml +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/.gitignore +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/.yamllint.yaml +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/LICENSE +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/README.md +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/__init__.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/__init__.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/lights.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/mesh_extract.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/modal.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/cli.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/config.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/objectjson.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/parkobj.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/placement.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/py.typed +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/testing.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/scripts/ci/set_version.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/conftest.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/test_blender.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/test_cli.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/test_config.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/test_objectjson.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/test_parkobj.py +0 -0
- {openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/tests/test_placement.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: OpenRCT2-ObjectCommon
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
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
|
|
@@ -9,7 +9,7 @@ License-Expression: GPL-3.0-or-later
|
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
Requires-Python: >=3.11
|
|
11
11
|
Requires-Dist: numpy>=1.26
|
|
12
|
-
Requires-Dist: openrct2-x7-renderer>=0.3.
|
|
12
|
+
Requires-Dist: openrct2-x7-renderer>=0.3.9
|
|
13
13
|
Requires-Dist: pillow>=10.0
|
|
14
14
|
Requires-Dist: pyyaml>=6.0
|
|
15
15
|
Provides-Extra: blender
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/props.py
RENAMED
|
@@ -62,6 +62,11 @@ DITHER_MODE_ITEMS = [
|
|
|
62
62
|
"Bayer (frame-stable)",
|
|
63
63
|
"Ordered dither locked to screen position; stable across animation frames",
|
|
64
64
|
),
|
|
65
|
+
(
|
|
66
|
+
"blue_noise",
|
|
67
|
+
"Blue noise (frame-stable)",
|
|
68
|
+
"Like Bayer but a blue-noise mask; less perceptible residual motion under rotation",
|
|
69
|
+
),
|
|
65
70
|
("none", "None", "No dithering; flat palette quantisation"),
|
|
66
71
|
]
|
|
67
72
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "OpenRCT2-ObjectCommon"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.4"
|
|
4
4
|
description = "Shared config, CLI, .parkobj, and object.json scaffolding for OpenRCT2 object generators."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -9,7 +9,7 @@ authors = [
|
|
|
9
9
|
{ name = "Alex Parisi", email = "alex@atparisi.com" }
|
|
10
10
|
]
|
|
11
11
|
dependencies = [
|
|
12
|
-
"openrct2-x7-renderer>=0.3.
|
|
12
|
+
"openrct2-x7-renderer>=0.3.9",
|
|
13
13
|
"numpy>=1.26",
|
|
14
14
|
"pillow>=10.0",
|
|
15
15
|
"pyyaml>=6.0",
|
|
@@ -50,8 +50,10 @@ def test_shared_light_propertygroup_defined():
|
|
|
50
50
|
def test_dither_mode_items_match_renderer_modes():
|
|
51
51
|
# The add-on enum identifiers must be exactly the strings make_context /
|
|
52
52
|
# Context accept, and the default must be one of them.
|
|
53
|
+
from openrct2_x7_renderer.ray_trace import DITHER_MODES
|
|
54
|
+
|
|
53
55
|
ids = {ident for ident, _label, _desc in props.DITHER_MODE_ITEMS}
|
|
54
|
-
assert ids ==
|
|
56
|
+
assert ids == set(DITHER_MODES)
|
|
55
57
|
assert props.DEFAULT_DITHER_MODE in ids
|
|
56
58
|
|
|
57
59
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/lights.py
RENAMED
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/blender/modal.py
RENAMED
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/config.py
RENAMED
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/objectjson.py
RENAMED
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/parkobj.py
RENAMED
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/placement.py
RENAMED
|
File without changes
|
|
File without changes
|
{openrct2_objectcommon-0.2.3 → openrct2_objectcommon-0.2.4}/openrct2_object_common/testing.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|