Enhance AIImages mod by adding scheduler support and updating UI for improved model and sampler selection. Localized strings in English and Russian have been updated for clarity. Update AIImages.dll to reflect changes in functionality.

This commit is contained in:
Leonid Pershin
2025-10-26 18:33:33 +03:00
parent 6715544952
commit 2af1ef9292
10 changed files with 376 additions and 61 deletions

View File

@@ -12,6 +12,7 @@ namespace AIImages.Models
public int Width { get; set; }
public int Height { get; set; }
public string Sampler { get; set; }
public string Scheduler { get; set; }
public int Seed { get; set; }
public string Model { get; set; }
public ArtStyle ArtStyle { get; set; }
@@ -24,6 +25,7 @@ namespace AIImages.Models
Width = 512;
Height = 768;
Sampler = "Euler a";
Scheduler = "Automatic";
Seed = -1; // Случайный seed
ArtStyle = ArtStyle.Realistic;
PositivePrompt = "";