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
69 changed files
with
509 additions
and
429 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
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
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
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
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
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
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(); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.