mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 08:08:51 -05:00
#180 - Minor style fix
This commit is contained in:
parent
cf567e877d
commit
4a8f9ba571
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user