728x90

.uproject 파일( 프로젝트 실행 파일)의 Plugins에서 문제가 되는 플러그인 이름을 찾고 "Enabled": true,를 false로 바꿔 줍니다.
{
"FileVersion": 3,
"EngineAssociation": "4.27",
"Category": "",
"Description": "",
"Modules": [
{
"Name": "VISION_Webcam",
"Type": "Runtime",
"LoadingPhase": "Default",
"AdditionalDependencies": [
"CoreUObject",
"Engine"
]
}
],
"Plugins": [
{
"Name": "BPOpenCV",
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/10d14f664e6149d1832ac90659ae53a1"
},
{
"Name": "BleGoodies",
"Enabled": false,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/9ad1594e91da4da1aa72fb617697c9f7"
},
],
"TargetPlatforms": [
"AllDesktop",
"Android",
"WindowsNoEditor",
"IOS",
"Linux",
"Mac",
"Windows"
]
}
수정한 코드
{
"Name": "BPOpenCV",
"Enabled": false,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/10d14f664e6149d1832ac90659ae53a1"
},
'UNREAL > Unreal Study' 카테고리의 다른 글
움직이는 액터 (0) | 2024.05.07 |
---|---|
멀티플레이어 - 미완 (0) | 2024.05.07 |
외부 프로그램 화면 가장 앞or 뒤로 옮기기 (0) | 2024.03.17 |
언리얼로 만든 프로그렘 전체화면으로 만들기 (0) | 2024.03.17 |
탐색창에서 파일 선택해 불러오기, 저장위치 정하기 (0) | 2024.03.17 |