mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-20 15:44:23 +01:00
Reset materials when applying designs
Prevents previously updated advanced dyes (manual update or design application) from impacting new design applications.
This commit is contained in:
parent
415ac63767
commit
94c3d6cf69
1 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ public readonly record struct ApplySettings(
|
||||||
RespectManual = false,
|
RespectManual = false,
|
||||||
UseSingleSource = false,
|
UseSingleSource = false,
|
||||||
MergeLinks = false,
|
MergeLinks = false,
|
||||||
ResetMaterials = false,
|
ResetMaterials = true,
|
||||||
};
|
};
|
||||||
|
|
||||||
public static readonly ApplySettings ManualWithLinks = new()
|
public static readonly ApplySettings ManualWithLinks = new()
|
||||||
|
|
@ -34,7 +34,7 @@ public readonly record struct ApplySettings(
|
||||||
RespectManual = false,
|
RespectManual = false,
|
||||||
UseSingleSource = false,
|
UseSingleSource = false,
|
||||||
MergeLinks = true,
|
MergeLinks = true,
|
||||||
ResetMaterials = false,
|
ResetMaterials = true,
|
||||||
};
|
};
|
||||||
|
|
||||||
public static readonly ApplySettings Game = new()
|
public static readonly ApplySettings Game = new()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue