-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathNdiMedia.uplugin
42 lines (40 loc) · 1.02 KB
/
NdiMedia.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
{
"FileVersion" : 3,
"FriendlyName" : "NDI Media Player",
"Version" : 8,
"VersionName" : "8.0",
"CreatedBy" : "Epic Games Inc",
"CreatedByURL" : "http://epicgames.com",
"DocsURL" : "https://github.com/ue4plugins/NdiMedia",
"EngineVersion" : "4.20.0",
"Description" : "Implements a media player using Newtek's Network Device Interface (NDI).",
"Category" : "Media Players",
"CanContainContent" : false,
"EnabledByDefault" : true,
"IsBetaVersion": false,
"Modules" :
[
{
"Name" : "NdiMedia",
"Type" : "RuntimeNoCommandlet",
"LoadingPhase" : "PreLoadingScreen",
"WhitelistPlatforms" : [ "IOS", "Linux", "Mac", "Win32", "Win64" ]
},
{
"Name" : "NdiMediaEditor",
"Type" : "Editor",
"LoadingPhase" : "PostEngineInit"
},
{
"Name" : "NdiMediaFactory",
"Type" : "Editor",
"LoadingPhase" : "PostEngineInit"
},
{
"Name": "NdiMediaFactory",
"Type": "RuntimeNoCommandlet",
"LoadingPhase" : "PostEngineInit",
"WhitelistPlatforms" : [ "IOS", "Linux", "Mac", "Win32", "Win64" ]
}
]
}