Skip to content
Snippets Groups Projects
Commit 7056ad7a authored by Trinidad's avatar Trinidad :flag_es:
Browse files

modified: src/art/genAI/prompts/stylePromptPart.js

parent 8de8b4a5
No related branches found
No related tags found
No related merge requests found
......@@ -6,19 +6,19 @@ App.Art.GenAI.StylePromptPart = class StylePromptPart extends App.Art.GenAI.Prom
switch (V.aiStyle) {
case 0: // custom
if (this.slave.visualAge < 18 && V.aiAgeFilter) {
return "(front-up portrait, medium close-up shot:1.3), " + V.aiCustomStylePos; // custom may break the control
return "front-up portrait, (tight medium shot:1.3), " + V.aiCustomStylePos; // custom may break the control
} else {
return V.aiCustomStylePos;
}
case 1: // photorealistic
if (this.slave.visualAge < 18 && V.aiAgeFilter) {
return "<lora:LowRA:0.5> (front-up portrait, medium close-up shot:1.2), photorealistic, dark theme, black background";
return "<lora:LowRA:0.5> front-up portrait, (tight medium shot:1.2), photorealistic, dark theme, black background";
} else {
return "<lora:LowRA:0.5> full body portrait, photorealistic, dark theme, black background";
}
case 2: // anime/hentai
if (this.slave.visualAge < 18 && V.aiAgeFilter) {
return "(front-up portrait, medium close-up shot:1.1), 2d, anime, hentai, dark theme, black background";
return "front-up portrait, (tight medium shot:1.1), 2d, anime, hentai, dark theme, black background";
} else {
return "full body portrait, 2d, anime, hentai, dark theme, black background";
}
......@@ -32,19 +32,19 @@ App.Art.GenAI.StylePromptPart = class StylePromptPart extends App.Art.GenAI.Prom
switch (V.aiStyle) {
case 0: // custom
if (this.slave.visualAge < 18 && V.aiAgeFilter) {
return "full body portrait, full body, medium shot, " + V.aiCustomStyleNeg;
return "(head out of frame), full shot, medium full shot, full body portrait, " + V.aiCustomStyleNeg;
} else {
return V.aiCustomStyleNeg;
}
case 1: // photorealistic
if (this.slave.visualAge < 18 && V.aiAgeFilter) {
return "greyscale, monochrome, cg, render, unreal engine, full body portrait, medium shot";
return "greyscale, monochrome, cg, render, unreal engine, (head out of frame), full shot, medium full shot, full body portrait";
} else {
return "greyscale, monochrome, cg, render, unreal engine, closeup, medium shot";
}
case 2: // anime/hentai
if (this.slave.visualAge < 18 && V.aiAgeFilter) {
return "greyscale, monochrome, photography, 3d render, text, speech bubble, full body portrait, medium shot";
return "greyscale, monochrome, photography, 3d render, text, speech bubble, (head out of frame), full shot, medium full shot, full body portrait";
} else {
return "greyscale, monochrome, photography, 3d render, text, speech bubble, closeup, medium shot";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment