Files
tianrunCRM/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Interaction/UIDragDropContainer.cs
2020-07-04 14:41:25 +08:00

15 lines
451 B
C#

//----------------------------------------------
// NGUI: Next-Gen UI kit
// Copyright © 2011-2015 Tasharen Entertainment
//----------------------------------------------
using UnityEngine;
[AddComponentMenu("NGUI/Interaction/Drag and Drop Container")]
public class UIDragDropContainer : MonoBehaviour
{
public Transform reparentTarget;
protected virtual void Start () { if (reparentTarget == null) reparentTarget = transform; }
}