Refactor AIImages UI layout for improved positioning and consistency. Remove ShotType settings and related code to simplify prompt generation. Update models to include new properties for hair and apparel definitions, enhancing data handling for character appearance.
This commit is contained in:
@@ -16,6 +16,7 @@ namespace AIImages.Models
|
||||
public string BodyType { get; set; }
|
||||
public Color SkinColor { get; set; }
|
||||
public string HairStyle { get; set; }
|
||||
public string HairDefName { get; set; }
|
||||
public Color HairColor { get; set; }
|
||||
public List<Trait> Traits { get; set; }
|
||||
public List<ApparelData> Apparel { get; set; }
|
||||
@@ -33,7 +34,9 @@ namespace AIImages.Models
|
||||
public class ApparelData
|
||||
{
|
||||
public string Label { get; set; }
|
||||
public string DefName { get; set; }
|
||||
public string Material { get; set; }
|
||||
public string MaterialDefName { get; set; }
|
||||
public QualityCategory? Quality { get; set; }
|
||||
public Color Color { get; set; }
|
||||
public string LayerType { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user