Merged in fix/reorderablelistclone (pull request #97)

Fixed issue where a second ListContent component was added when a reorderable list was cloned
release
Simon Jackson 2020-10-02 17:21:21 +00:00
commit afe7598c34
2 changed files with 13 additions and 2 deletions

View File

@ -89,8 +89,14 @@ namespace UnityEngine.UI.Extensions
/// </summary>
public void Refresh()
{
Destroy(_listContent);
_listContent = ContentLayout.gameObject.AddComponent<ReorderableListContent>();
_listContent = ContentLayout.gameObject.GetComponent<ReorderableListContent>();
if (!_listContent)
{
_listContent = ContentLayout.gameObject.AddComponent<ReorderableListContent>();
}
_listContent.Init(this);
}

View File

@ -6,6 +6,7 @@ using System.Collections.Generic;
namespace UnityEngine.UI.Extensions
{
[DisallowMultipleComponent]
public class ReorderableListContent : MonoBehaviour
{
private List<Transform> _cachedChildren;
@ -13,6 +14,7 @@ namespace UnityEngine.UI.Extensions
private ReorderableListElement _ele;
private ReorderableList _extList;
private RectTransform _rect;
private bool _started = false;
private void OnEnable()
{
@ -27,12 +29,15 @@ namespace UnityEngine.UI.Extensions
public void Init(ReorderableList extList)
{
if (_started) { StopCoroutine(RefreshChildren()); }
_extList = extList;
_rect = GetComponent<RectTransform>();
_cachedChildren = new List<Transform>();
_cachedListElement = new List<ReorderableListElement>();
StartCoroutine(RefreshChildren());
_started = true;
}
private IEnumerator RefreshChildren()