미니맵 뒤에 반투명 배경을 넣고싶어서 automaphd.json 파일에 아래의 문장을 넣으면
        {
            "type": "RectangleWidget", "name": "background",
            "fields": {
                "fitToParent": true,
                "color": [ 0.0, 0.0, 0.0, 0.5 ], // 배경 투명도 조절은 0.15 수치를 1로 가깝게 만들면 어두워짐
                "borderColor" : [ 0.78, 0.70, 0.47, 0.5 ],  // 배경 테두리 색상
            }
        },

미니맵 오브젝트가 백그라운드에 가려져서 잘 안 보이더라구요


백그라운드 위젯이 AutoMap의 children으로 들어가서 그런 거 같은데...

가능하다면 automaphd.json 파일 한 개로 끝내고싶은데 방법이 없을까요?

지금은 일단 automaphd.json 파일에 백그라운드 넣고

automaphd.json 파일과 같은 내용으로 automapminihd.json 파일 만든 후 타이머로 불러와서 사용 중입니다

{
    "type": "AutoMapPanel", "name": "AutoMap",
    "fields": {
        // Fade none uses maxOpacity
        // Fade all uses the custom opacity set in the user's settings
        // Fade auto uses highOpacity on acts 1,3; lowOpacity on acts 1,3 minimap; and maxOpacity otherwise
        // Fade center uses minOpacity, lowOpacity, and highOpacity as it gets farther from the player
        "maxOpacity": 0.85, //기본 값 0.85
        "highOpacity": 0.65, //기본 값 0.65
        "lowOpacity": 0.5, //기본 값 0.5
        "minOpacity": 0.25, //기본 값 0.25
        "priority": -110,
        "miniScreenSizeFraction": 0.25, //기본 값 0.3333333333
        "miniTileScale": 0.5, //기본 값 0.5
        "miniOffsetLeft": { "y": 0 }, //기본 값 "y": 96
        "miniOffsetRight": { "y": 0 }, //기본 값 "y": 78
        "tilesDefaultFilename": [
            "AUTOMAP/Default00/Tiles",
            "AUTOMAP/Default01/Tiles",
            "AUTOMAP/Default02/Tiles",
            "AUTOMAP/Default03/Tiles",
            "AUTOMAP/Default04/Tiles",
            "AUTOMAP/Default05/Tiles",
            "AUTOMAP/Default06/Tiles",
            "AUTOMAP/Default07/Tiles",
            "AUTOMAP/Default08/Tiles",
            "AUTOMAP/Default09/Tiles",
            "AUTOMAP/Default10/Tiles",
            "AUTOMAP/Default11/Tiles",
            "AUTOMAP/Default12/Tiles",
            "AUTOMAP/Default13/Tiles",
            "AUTOMAP/Default14/Tiles",
        ],
        "tilesAct2TownFilename": [
            "AUTOMAP/Act2TownW/Tiles",
            "AUTOMAP/Act2TownN/Tiles",
        ],
        "tilesAct4TownFilename": "AUTOMAP/Act4Town/Tiles",
        "tilesAct5TownFilename": "AUTOMAP/Act5Town/Tiles",
        "unitLabelFont": "Chat",
        "unitLabelOffset": 80,
        "unitLabelBackgroundOpacity": 0.5, //기본 값 0.5
    },
    "children": [
        {
            "type": "TimerWidget", "name": "automapmini open timer",
            "fields": {
                "time": 0.01,
                "message": "PanelManager:OpenPanel:automapmini",
            }
        },
    ]
}


개인적으로 불편한 점이 있어서... automaphd.json 파일 한 개로 끝내고싶습니다 ㅠ