2021-12-27 00:52:50 +01:00
# Validator
2021-12-26 02:15:37 +01:00
2021-12-27 00:52:50 +01:00
Unity project validator framework.
## Getting Started
Open Validator Window:
> Window -> General -> Validator
Add validatable:
```C#
using Validator;
public class MyBehaviour : MonoBehaviour, IValidatable
{
[SerializeField] private float startHealth = 10; // If someone was to put it to low < = 0, it would be invalid.
#if UNITY_EDITOR
public void Validate(Report report)
{
// Check if health is valid.
if(startHealth < = 0)
{
// If not, log it.
report.Log(this, WarningType.Warning, ReportCategories.Design, $"{nameof(startHealth)} is to low", $"Make value > 0");
}
}
#endif
}
```
2021-12-26 02:15:37 +01:00
## Install
[Installing from a Git URL ](https://docs.unity3d.com/Manual/upm-ui-giturl.html )
[Unitypackage ](https://github.com/COMPANYNAME/PACKAGENAME/releases )
## LICENSE
Overall package is licensed under [MIT ](/LICENSE.md ), unless otherwise noted in the [3rd party licenses ](/THIRD%20PARTY%20NOTICES.md ) file and/or source code.