Tune hardcore detail density

This commit is contained in:
2026-06-24 17:42:11 +02:00
parent e2bdff6075
commit fb6d99ac20
7 changed files with 206 additions and 19 deletions
+5
View File
@@ -41,6 +41,7 @@ try:
character_woman_body_choices,
ethnicity_choices,
generation_profile_choices,
hardcore_detail_density_choices,
load_character_profile_json,
seed_mode_choices,
subcategory_choices,
@@ -85,6 +86,7 @@ except ImportError:
character_woman_body_choices,
ethnicity_choices,
generation_profile_choices,
hardcore_detail_density_choices,
load_character_profile_json,
seed_mode_choices,
subcategory_choices,
@@ -1040,6 +1042,7 @@ class SxCPInstaOFOptions:
"softcore_camera_mode": (camera_mode_choices(), {"default": "handheld_selfie"}),
"hardcore_camera_mode": (["from_camera_config", "same_as_softcore"] + camera_mode_choices(), {"default": "from_camera_config"}),
"camera_detail": (camera_detail_choices(), {"default": "compact"}),
"hardcore_detail_density": (hardcore_detail_density_choices(), {"default": "balanced"}),
}
}
@@ -1066,6 +1069,7 @@ class SxCPInstaOFOptions:
softcore_camera_mode,
hardcore_camera_mode,
camera_detail,
hardcore_detail_density,
):
return (
build_insta_of_options_json(
@@ -1085,6 +1089,7 @@ class SxCPInstaOFOptions:
softcore_camera_mode=softcore_camera_mode,
hardcore_camera_mode=hardcore_camera_mode,
camera_detail=camera_detail,
hardcore_detail_density=hardcore_detail_density,
),
)