Panel_API Setting 문제 수정

This commit is contained in:
jmaniuvc
2025-05-28 15:23:54 +09:00
parent 4c2ae966d3
commit a40a139e28
2 changed files with 5 additions and 4 deletions

View File

@@ -455,8 +455,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1} m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 420.3, y: -105} m_AnchoredPosition: {x: 386, y: -105}
m_SizeDelta: {x: 348.8, y: 40} m_SizeDelta: {x: 272, y: 20}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &8354707506148702448 --- !u!222 &8354707506148702448
CanvasRenderer: CanvasRenderer:
@@ -1808,7 +1808,7 @@ RectTransform:
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 40, y: 40} m_SizeDelta: {x: 40, y: 20}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &6013032041850567338 --- !u!1 &6013032041850567338
GameObject: GameObject:

View File

@@ -18,6 +18,7 @@ namespace Studio.UI
private Button Button_TestAPI; private Button Button_TestAPI;
private Button Button_Remove; private Button Button_Remove;
private RectTransform URLItemContent; private RectTransform URLItemContent;
private RectTransform AddURL;
private UI_InputURLItem prf_InputURLItem; private UI_InputURLItem prf_InputURLItem;
private List<UI_InputURLItem> inputURLItems = new List<UI_InputURLItem>(); private List<UI_InputURLItem> inputURLItems = new List<UI_InputURLItem>();
@@ -43,7 +44,7 @@ namespace Studio.UI
item.onRemoveItem += RemoveURLItem; item.onRemoveItem += RemoveURLItem;
AddURLItem(item); AddURLItem(item);
Button_AddURLItem.transform.SetAsLastSibling(); AddURL.transform.SetAsLastSibling();
} }
private async void OnClickTestAPIButton() private async void OnClickTestAPIButton()
{ {