-
Notifications
You must be signed in to change notification settings - Fork 60
/
SaveExtension.uplugin
60 lines (60 loc) · 1.68 KB
/
SaveExtension.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
{
"FileVersion": 3,
"Version": 9,
"VersionName": "1.4",
"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.26",
"EnabledByDefault": true,
"CanContainContent": false,
"IsBetaVersion": false,
"Modules": [
{
"Name": "SaveExtension",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"Android",
"PS5",
"XboxOne",
"Switch",
"Mac"
]
},
{
"Name": "SaveExtensionEditor",
"Type": "Editor",
"LoadingPhase": "PostEngineInit",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"Android",
"PS5",
"XboxOne",
"Switch",
"Mac"
]
},
{
"Name": "SaveExtensionTest",
"Type": "DeveloperTool",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"Mac"
]
}
]
}