Add some options to which special actors use which character collection and fix Inspect Actor recognition.

This commit is contained in:
Ottermandias 2022-06-04 00:54:01 +02:00
parent 4b58213597
commit c0102368c3
3 changed files with 72 additions and 7 deletions

View file

@ -21,6 +21,13 @@ public partial class Configuration : IPluginConfiguration
public bool HideUiInCutscenes { get; set; } = true;
public bool HideUiWhenUiHidden { get; set; } = false;
public bool UseCharacterCollectionInMainWindow { get; set; } = true;
public bool UseCharacterCollectionsInCards { get; set; } = true;
public bool UseCharacterCollectionInInspect { get; set; } = true;
public bool UseCharacterCollectionInTryOn { get; set; } = true;
public bool UseOwnerNameForCharacterCollection { get; set; } = true;
public bool PreferNamedCollectionsOverOwners { get; set; } = false;
#if DEBUG
public bool DebugMode { get; set; } = true;
#else