-
Notifications
You must be signed in to change notification settings - Fork 117
/
UnrealJS.uplugin
65 lines (65 loc) · 1.74 KB
/
UnrealJS.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"FileVersion": 3,
"FriendlyName": "Unreal.js - Javascript Runtime",
"Version": 2,
"VersionName": "0.6.4",
"FriendlyVersion": "0.6.4",
"EngineVersion": "5.1.0",
"Description": "Javascript powered UnrealEngine",
"Category": "Programming",
"CreatedBy": "NCSOFT Corporation",
"CreatedByURL": "http://github.com/ncsoft",
"EnabledByDefault": true,
"MarketplaceURL" : "com.epicgames.launcher://ue/marketplace/content/be751eedc4a14cc09e39945bc5a531c4",
"Modules": [
{
"Name": "V8",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [ "Win64", "Mac", "Linux", "Android", "IOS" ]
},
{
"Name": "JavascriptUMG",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [ "Win64", "Mac", "Linux", "Android", "IOS" ]
},
{
"Name": "JavascriptHttp",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [ "Win64", "Mac", "Linux", "Android", "IOS" ]
},
{
"Name": "JavascriptWebSocket",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [ "Win64" ]
},
{
"Name": "JavascriptGraphEditor",
"Type": "Editor",
"LoadingPhase": "PostDefault",
"WhitelistPlatforms": [ "Win64", "Mac", "Linux" ]
},
{
"Name": "JavascriptEditor",
"Type": "Editor",
"LoadingPhase": "PostDefault",
"WhitelistPlatforms": [ "Win64", "Mac", "Linux" ]
},
{
"Name": "JavascriptConsole",
"Type": "Editor",
"LoadingPhase": "PostEngineInit",
"WhitelistPlatforms": [ "Win64", "Mac", "Linux" ]
}
],
"Plugins": [
{
"Name": "OnlineSubsystemUtils",
"Enabled": true
}
],
"CanContainContent": true
}