Rock Generator 2.8.1: colors_type beim FBX-Export explizit setzen
Der Export verliess sich auf den Default. Damit die Vertex-Cavity zuverlaessig in der FBX landet, jetzt colors_type='SRGB' explizit. Verifiziert ueber einen Roundtrip: alle 8 exportierten Felsen tragen das Attribut "Cavity" nach dem Re-Import (Bereich 0.23..1.00). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
schema_version = "1.0.0"
|
schema_version = "1.0.0"
|
||||||
|
|
||||||
id = "stylized_rock_generator"
|
id = "stylized_rock_generator"
|
||||||
version = "2.8.0"
|
version = "2.8.1"
|
||||||
name = "Stylized Rock Generator"
|
name = "Stylized Rock Generator"
|
||||||
tagline = "Batch-Generator fuer stylized Rocks mit UE5-Export"
|
tagline = "Batch-Generator fuer stylized Rocks mit UE5-Export"
|
||||||
maintainer = "D4rkst3r"
|
maintainer = "D4rkst3r"
|
||||||
|
|||||||
Vendored
+4
-4
@@ -7,7 +7,7 @@
|
|||||||
"id": "stylized_rock_generator",
|
"id": "stylized_rock_generator",
|
||||||
"name": "Stylized Rock Generator",
|
"name": "Stylized Rock Generator",
|
||||||
"tagline": "Batch-Generator fuer stylized Rocks mit UE5-Export",
|
"tagline": "Batch-Generator fuer stylized Rocks mit UE5-Export",
|
||||||
"version": "2.8.0",
|
"version": "2.8.1",
|
||||||
"type": "add-on",
|
"type": "add-on",
|
||||||
"maintainer": "D4rkst3r",
|
"maintainer": "D4rkst3r",
|
||||||
"license": [
|
"license": [
|
||||||
@@ -23,9 +23,9 @@
|
|||||||
"Mesh",
|
"Mesh",
|
||||||
"Modeling"
|
"Modeling"
|
||||||
],
|
],
|
||||||
"archive_url": "./stylized_rock_generator-2.8.0.zip",
|
"archive_url": "./stylized_rock_generator-2.8.1.zip",
|
||||||
"archive_size": 19166,
|
"archive_size": 19215,
|
||||||
"archive_hash": "sha256:4c05d56bd4962caf7ce2bddd086ecbf0f6e34eb7fc045f35770f8e6d5267b7ad"
|
"archive_hash": "sha256:c548846fa03033b4aa2cf792ecd046118527926c5e09246c07095f77617dded1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"schema_version": "1.0.0",
|
"schema_version": "1.0.0",
|
||||||
|
|||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -1,7 +1,7 @@
|
|||||||
bl_info = {
|
bl_info = {
|
||||||
"name": "Stylized Rock Generator",
|
"name": "Stylized Rock Generator",
|
||||||
"author": "D4rkst3r",
|
"author": "D4rkst3r",
|
||||||
"version": (2, 8, 0),
|
"version": (2, 8, 1),
|
||||||
"blender": (4, 2, 0),
|
"blender": (4, 2, 0),
|
||||||
"location": "View3D > Sidebar > Rock Gen",
|
"location": "View3D > Sidebar > Rock Gen",
|
||||||
"description": (
|
"description": (
|
||||||
@@ -1130,6 +1130,8 @@ class OBJECT_OT_export_rocks_fbx(Operator):
|
|||||||
mesh_smooth_type=smooth_type,
|
mesh_smooth_type=smooth_type,
|
||||||
use_triangles=True,
|
use_triangles=True,
|
||||||
use_custom_props=True, # noetig fuer fbx_type=LodGroup
|
use_custom_props=True, # noetig fuer fbx_type=LodGroup
|
||||||
|
colors_type='SRGB', # Vertex-Cavity mit exportieren
|
||||||
|
# (in UE: Vertex Color Import = Replace)
|
||||||
add_leaf_bones=False,
|
add_leaf_bones=False,
|
||||||
bake_anim=False,
|
bake_anim=False,
|
||||||
path_mode='AUTO',
|
path_mode='AUTO',
|
||||||
|
|||||||
Reference in New Issue
Block a user