-
Notifications
You must be signed in to change notification settings - Fork 3
/
ExrMedia.uplugin
45 lines (45 loc) · 1.18 KB
/
ExrMedia.uplugin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"FileVersion" : 3,
"Version" : 2,
"VersionName" : "2.0",
"FriendlyName" : "EXR Media Player",
"Description" : "Implements a media player for EXR image sequences.",
"Category" : "Media Players",
"CreatedBy" : "Epic Games, Inc.",
"CreatedByURL" : "http://epicgames.com",
"DocsURL" : "https://forums.unrealengine.com/showthread.php?46879-Media-Framework-Documentation-for-4-5-Preview",
"EngineVersion" : "4.16.0",
"MarketplaceURL" : "",
"SupportURL" : "",
"EnabledByDefault" : true,
"CanContainContent" : false,
"IsBetaVersion" : true,
"Installed" : false,
"Modules" :
[
{
"Name" : "ExrMedia",
"Type" : "RuntimeNoCommandlet",
"LoadingPhase" : "PreLoadingScreen",
"WhitelistPlatforms" : [ "Win32", "Win64" ]
},
{
"Name" : "ExrMediaEditor",
"Type" : "Editor",
"LoadingPhase" : "PostEngineInit",
"WhitelistPlatforms" : [ "Win32", "Win64" ]
},
{
"Name" : "ExrMediaFactory",
"Type" : "RuntimeNoCommandlet",
"LoadingPhase" : "PostEngineInit",
"WhitelistPlatforms" : [ "Win32", "Win64" ]
},
{
"Name" : "OpenExrWrapper",
"Type" : "RuntimeNoCommandlet",
"LoadingPhase" : "PostEngineInit",
"WhitelistPlatforms" : [ "Win32", "Win64" ]
}
]
}