-
Notifications
You must be signed in to change notification settings - Fork 4
/
UnrealHelperLibrary.uplugin
66 lines (66 loc) · 1.34 KB
/
UnrealHelperLibrary.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
66
{
"FileVersion": 3,
"Version": 5,
"VersionName": "1.3.0",
"FriendlyName": "UnrealHelperLibrary",
"Description": "Helps working with AI, GAS, customizing editor and so on",
"Category": "AI",
"CreatedBy": "Ciberus",
"CreatedByURL": "https://github.com/Ciberusps",
"DocsURL": "https://github.com/Ciberusps/unreal-helper-library",
"MarketplaceURL": "",
"SupportURL": "https://github.com/Ciberusps/unreal-helper-library/issues",
"EngineVersion": "5.4.0",
"FabURL": "com.epicgames.launcher://ue/Fab/product/19390f7a-1d31-46ee-a54c-511b7f1a8166",
"EnabledByDefault": true,
"CanContainContent": true,
"Installed": false,
"IsBetaVersion": false,
"IsExperimentalVersion": false,
"Modules": [
{
"Name": "UnrealHelperLibrary",
"Type": "Runtime",
"LoadingPhase": "Default",
"PlatformAllowList": [
"Win64"
]
},
{
"Name": "UnrealHelperEditor",
"Type": "Editor",
"LoadingPhase": "PostEngineInit",
"PlatformAllowList": [
"Win64"
]
}
],
"Plugins": [
{
"Name": "GameplayAbilities",
"Enabled": true
},
{
"Name": "DataRegistry",
"Enabled": true
},
{
"Name": "GameplayTagsEditor",
"Enabled": true,
"TargetAllowList": [
"Editor"
]
},
{
"Name": "EnhancedInput",
"Enabled": true
},
{
"Name": "TextureGraph",
"Enabled": false,
"TargetAllowList": [
"Editor"
]
}
]
}