# 위치 수정
../data/global/ui/layouts/_profilehd.json
"SatateBarAnchor": {"x": 0.492, "y": -1.702}, // 미니 상태바 위치
"HireablesBarAnchor": {"x": 0.536, "y": 0.274}, // 용병, 소환수 상태바 위치
# 외부 버튼을 인포플러스 미니 메뉴 버튼으로 통합하기 : 그거 무슨 버튼인지 다 외우고 계세요???
../global/ui/layouts/mIPMiniPanelhd.json
{
"type" : "ScrollViewWidget",
"name" : "MiniPanelScrollView",
"fields" : {
"rect" : {"x": 0, "y": -6, "width": 316, "height": 480},
"scrollControllerName": "MiniPanelScrollController"
},
"children": [
{
"type" : "TableWidget",
"name" : "Table",
"fields" : {
"rect" : {"x": 8},
"columns" : [
{ "width": 316, "alignment": {"h": "fit", "v": "fit"} }
],
"rowHeight" : 60,
"cellPadding": {"left": 2, "right": 0}
},
// 버튼 테이블 시작
"children": [
{
"type" : "TableRowWidget",
"name" : "Row Table",
"children": [
{
"type" : "ButtonWidget",
"name" : "ItemList13",
"fields": {
"rect" : {"x": 0, "y": 0},
"filename" : "panel/mIP/mIP_MiniSlots",
"hoveredFrame": 0
}
},
{
"type" : "ButtonWidget",
"name" : "ActionButton13",
"fields": {
"rect" : {"x": 0, "y": 0},
"filename" : "panel/mIP/mIP_MiniSlotsBG",
"pressLabelOffset": [0, 0],
"onClickMessage" : "PanelManager:TogglePanel:hireablespartypanel", // 호출할 패널명
"hoveredFrame" : 1,
"sound" : "select"
}
},
{
"type" : "TextBoxWidget",
"name" : "ItemListText13",
"fields": {
"rect" : {"x": 0, "y": 26, "width": 316},
"text" : "파티 체력바", // 버튼에 표시 할 이름
"style": {
"fontColor": "$FontColorWhite",
"pointSize": "$xSmallFontSize",
"alignment": {"h": "center", "v": "center"}
}
}
}
]
},
// 버튼 테이블 반복
위 버튼 테이블 구간을 복사해서 원하는 만큼 버튼을 만들 수 있습니다.