14 lines
315 B
C#
14 lines
315 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Convention.WindowsUI
|
||
|
{
|
||
|
public partial class ScrollView : WindowUIModule
|
||
|
{
|
||
|
[Resources, HopeNotNull] public UnityEngine.UI.ScrollRect scrollRect;
|
||
|
private void Reset()
|
||
|
{
|
||
|
scrollRect = GetComponent<UnityEngine.UI.ScrollRect>();
|
||
|
}
|
||
|
}
|
||
|
}
|