25 lines
831 B
C#
25 lines
831 B
C#
using asap.core;
|
|
using game;
|
|
|
|
public class ScocialReportPanel : ReportPopupPanel
|
|
{
|
|
private void Awake()
|
|
{
|
|
clubService = GContext.container.Resolve<ClubService>();
|
|
text_empty = transform.Find("empty").gameObject;
|
|
panelScroll = transform.Find("rank/ScrollView").gameObject;
|
|
eventReportPopupItem = transform.Find("rank/ScrollView/Viewport/Content/Item").gameObject;
|
|
Content = transform.Find("rank/ScrollView/Viewport/Content");
|
|
eventReportPopupItem.SetActive(false);
|
|
//SetH();
|
|
}
|
|
//赠送礼物
|
|
//void SetH()
|
|
//{
|
|
// RectTransform rectTransform = panelScroll.transform.GetComponent<RectTransform>();
|
|
// //Rect rect = rectTransform.rect;
|
|
// //rect.yMax = 1550;350
|
|
// rectTransform.offsetMin = new Vector2(0, 500);//350
|
|
//}
|
|
}
|