-
Notifications
You must be signed in to change notification settings - Fork 18
/
AttributesExtension.uplugin
57 lines (57 loc) · 1.15 KB
/
AttributesExtension.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
{
"FileVersion": 3,
"Version": 6,
"VersionName": "1.3c",
"FriendlyName": "Attributes Extension",
"Description": "A lightweight attributes system for Unreal Engine 4",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/1f0ba37099a14e228a1ce5e4891ed70a",
"Category": "Piperift",
"CreatedBy": "PipeRift",
"CreatedByURL": "http://piperift.com/",
"DocsURL": "https://piperift.com/AttributesExtension/",
"SupportURL": "[email protected]",
"EngineVersion": "5.1",
"CanContainContent": false,
"IsBetaVersion": false,
"Modules": [
{
"Name": "Attributes",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"Android",
"PS5",
"XboxOne",
"Switch"
]
},
{
"Name": "AttributesEditor",
"Type": "Editor",
"LoadingPhase": "PostEngineInit",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"Android",
"PS5",
"XboxOne",
"Switch"
]
},
{
"Name" : "AttributesTest",
"Type" : "DeveloperTool",
"LoadingPhase" : "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"Mac"
]
}
]
}