Add image type selection feature in AIImages mod, allowing users to choose between portrait and full body images. Update English and Russian localization files to include new labels for image types. Modify UI components to render the image type selector and adjust generation settings accordingly. Update AIImages.dll to reflect these changes.

This commit is contained in:
Leonid Pershin
2025-10-31 10:46:53 +03:00
parent 731428fb44
commit 1b35cb6a44
7 changed files with 99 additions and 2 deletions

View File

@@ -44,6 +44,9 @@ namespace AIImages.Settings
// Путь для сохранения
public string savePath = "AIImages/Generated";
// Тип генерации
public AIImages.Models.ImageType imageType = AIImages.Models.ImageType.Portrait;
// Флаги
public bool autoLoadModels = true;
public bool showTechnicalInfo = true;
@@ -75,6 +78,8 @@ namespace AIImages.Settings
Scribe_Values.Look(ref savePath, "savePath", "AIImages/Generated");
Scribe_Values.Look(ref imageType, "imageType", AIImages.Models.ImageType.Portrait);
Scribe_Values.Look(ref autoLoadModels, "autoLoadModels", true);
Scribe_Values.Look(ref showTechnicalInfo, "showTechnicalInfo", true);
Scribe_Values.Look(ref saveGenerationHistory, "saveGenerationHistory", true);
@@ -102,6 +107,7 @@ namespace AIImages.Settings
ArtStyleDefName = artStyleDefName,
PositivePrompt = basePositivePrompt,
NegativePrompt = baseNegativePrompt,
ImageType = imageType,
};
}
}