본문 바로가기
UNREAL/Unreal Study

플러그인 문제로 프로젝트가 열리지 않을 때

by GREEN나무 2025. 4. 8.
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"
		},