- Validator: Added asset validators with material texture and shader validation
- Validator: Added option to enable/disable certain validators - Project Settings: Fixed issue, where changes weren't always saved - Unity: Removed deprecated warnings in Unity 6.4
This commit is contained in:
parent
01ac17a078
commit
dd55a87740
30 changed files with 716 additions and 38 deletions
10
Runtime/Interfaces/IAssetValidator.cs
Normal file
10
Runtime/Interfaces/IAssetValidator.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Module.ProjectValidator
|
||||
{
|
||||
public interface IAssetValidator<in T> where T : Object
|
||||
{
|
||||
void Validate(T obj, List<ValidatorResult> results);
|
||||
}
|
||||
}
|
||||
3
Runtime/Interfaces/IAssetValidator.cs.meta
Normal file
3
Runtime/Interfaces/IAssetValidator.cs.meta
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 24ee414b7fa14a368a48cab1b608ee3b
|
||||
timeCreated: 1779624012
|
||||
Loading…
Add table
Add a link
Reference in a new issue