forked from PipeRift/SaveExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSaveExtension.uplugin
More file actions
57 lines (57 loc) · 1.19 KB
/
SaveExtension.uplugin
File metadata and controls
57 lines (57 loc) · 1.19 KB
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" : 7,
"VersionName" : "1.2",
"FriendlyName" : "Save Extension",
"Description" : "Provides UE4 with a save-game system with support for savegame tags, level streaming and more",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/91084f43b68047ac8da6fc88a7467936",
"Category" : "Piperift",
"CreatedBy" : "Piperift",
"CreatedByURL" : "https://piperift.com",
"DocsURL": "https://piperift.com/SaveExtension/",
"SupportURL" : "info@piperift.com",
"EngineVersion" : "4.22.0",
"EnabledByDefault": true,
"CanContainContent": false,
"IsBetaVersion" : false,
"Modules" : [
{
"Name" : "SaveExtension",
"Type" : "Runtime",
"LoadingPhase" : "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"HTML5",
"Android",
"PS4",
"XboxOne",
"Switch",
"Mac"
]
},
{
"Name" : "SaveExtensionEditor",
"Type" : "Editor",
"LoadingPhase" : "PostEngineInit",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"HTML5",
"Android",
"PS4",
"XboxOne",
"Switch",
"Mac"
]
}
],
"Plugins": [
{
"Name": "GameplayAbilities",
"Enabled": true
}
]
}