-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Missing override mask registrations for Fo4/Starfield
- Loading branch information
Showing
6 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
Mutagen.Bethesda.Fallout4/Plugins/Cache/Internals/Fallout4OverrideMaskRegistration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using Loqui; | ||
using Mutagen.Bethesda.Plugins.Cache.Internals; | ||
|
||
namespace Mutagen.Bethesda.Fallout4; | ||
|
||
internal class Fallout4OverrideMaskRegistration : IOverrideMaskRegistration | ||
{ | ||
public IEnumerable<(ILoquiRegistration, object)> Masks | ||
{ | ||
get | ||
{ | ||
yield return (Cell_Registration.Instance, ModContextExt.CellCopyMask); | ||
yield return (Worldspace_Registration.Instance, ModContextExt.WorldspaceCopyMask); | ||
yield return (Quest_Registration.Instance, ModContextExt.QuestCopyMask); | ||
yield return (DialogTopic_Registration.Instance, ModContextExt.DialogTopicCopyMask); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
Mutagen.Bethesda.Starfield/Plugins/Cache/Internal/StarfieldOverrideMaskRegistration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using Loqui; | ||
using Mutagen.Bethesda.Plugins.Cache.Internals; | ||
|
||
namespace Mutagen.Bethesda.Starfield; | ||
|
||
internal class SkyrimOverrideMaskRegistration : IOverrideMaskRegistration | ||
{ | ||
public IEnumerable<(ILoquiRegistration, object)> Masks | ||
{ | ||
get | ||
{ | ||
yield return (Cell_Registration.Instance, ModContextExt.CellCopyMask); | ||
yield return (Worldspace_Registration.Instance, ModContextExt.WorldspaceCopyMask); | ||
yield return (Quest_Registration.Instance, ModContextExt.QuestCopyMask); | ||
yield return (DialogTopic_Registration.Instance, ModContextExt.DialogTopicCopyMask); | ||
} | ||
} | ||
} |