This commit is contained in:
2025-12-31 02:29:28 +08:00
parent 893df3ee1c
commit b64aa60e91
6 changed files with 124 additions and 13 deletions

View File

@@ -23,6 +23,8 @@ namespace WulaFallenEmpire
public float aiCommentaryChance = 0.7f;
public bool commentOnNegativeOnly = false;
public string extraPersonalityPrompt = "";
public int reactMaxSteps = 4;
public float reactMaxSeconds = 60f;
public override void ExposeData()
{
@@ -44,6 +46,8 @@ namespace WulaFallenEmpire
Scribe_Values.Look(ref aiCommentaryChance, "aiCommentaryChance", 0.7f);
Scribe_Values.Look(ref commentOnNegativeOnly, "commentOnNegativeOnly", false);
Scribe_Values.Look(ref extraPersonalityPrompt, "extraPersonalityPrompt", "");
Scribe_Values.Look(ref reactMaxSteps, "reactMaxSteps", 4);
Scribe_Values.Look(ref reactMaxSeconds, "reactMaxSeconds", 12f);
base.ExposeData();
}