This repository has been archived by the owner on Aug 24, 2024. It is now read-only.
generated from techno-dwarf-works/unity-package-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from techno-dwarf-works/feature/clean-up
Clean up
- Loading branch information
Showing
78 changed files
with
624 additions
and
474 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
Assets/Better/Validation/Resources/ValidationSettings.asset
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
Assets/Better/Validation/Resources/ValidationSettings.asset.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
15 changes: 10 additions & 5 deletions
15
Assets/BetterValidation/Editor/BetterValidation.Editor.asmdef
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
7 changes: 3 additions & 4 deletions
7
Assets/BetterValidation/Editor/EditorAddons/ContextResolver/AssetResolver.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
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
7 changes: 3 additions & 4 deletions
7
Assets/BetterValidation/Editor/EditorAddons/ContextResolver/SceneResolver.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
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
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
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
4 changes: 2 additions & 2 deletions
4
...etterValidation/Editor/EditorAddons/PreBuildValidation/Interfaces/IBuildValidationStep.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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Better.Validation.EditorAddons.PreBuildValidation.Interfaces | ||
namespace Better.Validation.EditorAddons.PreBuildValidation | ||
{ | ||
public interface IBuildValidationStep | ||
{ | ||
public List<ValidationCommandData> GatherValidationData(); | ||
public List<ValidationCommandData> GatherValidationData(ValidatorCommands commands); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
.../BetterValidation/Editor/EditorAddons/PreBuildValidation/Models/AllSceneValidationStep.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,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace Better.Validation.EditorAddons.PreBuildValidation | ||
{ | ||
[Serializable] | ||
public class AllSceneValidationStep : IBuildValidationStep | ||
{ | ||
public List<ValidationCommandData> GatherValidationData(ValidatorCommands commands) | ||
{ | ||
return commands.ValidateAttributesInAllScenes(); | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...erValidation/Editor/EditorAddons/PreBuildValidation/Models/AllSceneValidationStep.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
16 changes: 2 additions & 14 deletions
16
...s/BetterValidation/Editor/EditorAddons/PreBuildValidation/Models/ProjectValidationStep.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 |
---|---|---|
@@ -1,26 +1,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using Better.Validation.EditorAddons.PreBuildValidation.Interfaces; | ||
|
||
namespace Better.Validation.EditorAddons.PreBuildValidation.Models | ||
namespace Better.Validation.EditorAddons.PreBuildValidation | ||
{ | ||
[Serializable] | ||
public class ProjectValidationStep : IBuildValidationStep | ||
{ | ||
public List<ValidationCommandData> GatherValidationData() | ||
public List<ValidationCommandData> GatherValidationData(ValidatorCommands commands) | ||
{ | ||
var commands = new ValidatorCommands(); | ||
return commands.ValidateAttributesInProject(); | ||
} | ||
} | ||
|
||
[Serializable] | ||
public class AllSceneValidationStep : IBuildValidationStep | ||
{ | ||
public List<ValidationCommandData> GatherValidationData() | ||
{ | ||
var commands = new ValidatorCommands(); | ||
return commands.ValidateAttributesInAllScenes(); | ||
} | ||
} | ||
} |
Oops, something went wrong.