mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-19 14:07:43 +01:00
Fix problem with mare colors not resetting, reduce redraws again, use material texture instead of GPU.
This commit is contained in:
parent
d36e4f891b
commit
80a6e89aa5
8 changed files with 20 additions and 26 deletions
|
|
@ -12,7 +12,8 @@ public readonly record struct ApplySettings(
|
|||
bool RespectManual = false,
|
||||
bool FromJobChange = false,
|
||||
bool UseSingleSource = false,
|
||||
bool MergeLinks = false)
|
||||
bool MergeLinks = false,
|
||||
bool ResetMaterials = false)
|
||||
{
|
||||
public static readonly ApplySettings Manual = new()
|
||||
{
|
||||
|
|
@ -22,6 +23,7 @@ public readonly record struct ApplySettings(
|
|||
RespectManual = false,
|
||||
UseSingleSource = false,
|
||||
MergeLinks = false,
|
||||
ResetMaterials = false,
|
||||
};
|
||||
|
||||
public static readonly ApplySettings ManualWithLinks = new()
|
||||
|
|
@ -32,6 +34,7 @@ public readonly record struct ApplySettings(
|
|||
RespectManual = false,
|
||||
UseSingleSource = false,
|
||||
MergeLinks = true,
|
||||
ResetMaterials = false,
|
||||
};
|
||||
|
||||
public static readonly ApplySettings Game = new()
|
||||
|
|
@ -42,6 +45,7 @@ public readonly record struct ApplySettings(
|
|||
RespectManual = false,
|
||||
UseSingleSource = false,
|
||||
MergeLinks = false,
|
||||
ResetMaterials = true,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue