-
Notifications
You must be signed in to change notification settings - Fork 17
/
ActionsExtension.uplugin
63 lines (63 loc) · 1.4 KB
/
ActionsExtension.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
{
"FileVersion": 3,
"Version": 10,
"VersionName": "1.1",
"FriendlyName": "Actions Extension",
"Description": "A plugin that adds asynchronous tasks called Actions to UE4",
"Category": "Piperift",
"CreatedBy": "Piperift",
"CreatedByURL": "http://piperift.com/",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/2924990b22c1452aa20a21af60c4aa12",
"DocsURL": "https://piperift.com/ActionsExtension",
"SupportURL": "info@piperift.com",
"EngineVersion": "5.4",
"CanContainContent": false,
"Modules": [
{
"Name": "Actions",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Mac",
"IOS",
"Android",
"Linux"
]
},
{
"Name": "ActionsGraph",
"Type": "UncookedOnly",
"LoadingPhase": "Default",
"WhitelistPlatforms": [
"Win64",
"Mac",
"IOS",
"Android",
"Linux"
]
},
{
"Name": "ActionsEditor",
"Type": "Editor",
"LoadingPhase": "PostEngineInit",
"WhitelistPlatforms": [
"Win64",
"Mac",
"IOS",
"Android",
"Linux"
]
},
{
"Name" : "ActionsTest",
"Type" : "DeveloperTool",
"LoadingPhase" : "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Linux",
"Mac"
]
}
]
}