#180 - Minor style fix

This commit is contained in:
Adam Ramberg 2020-08-04 01:04:04 +02:00
parent cf567e877d
commit 4a8f9ba571

View File

@ -18,7 +18,8 @@ namespace UnityAtoms
/// <summary>
/// Whether the list should start cleared
/// </summary>
[SerializeField] protected bool StartCleared;
[SerializeField]
protected bool _startCleared;
/// <summary>
/// Clear the list.
@ -33,7 +34,7 @@ namespace UnityAtoms
}
private void OnEnable()
{
if(StartCleared)
if (_startCleared)
{
Clear();
}