-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathSkookumScript.uplugin
More file actions
94 lines (94 loc) · 2.09 KB
/
Copy pathSkookumScript.uplugin
File metadata and controls
94 lines (94 loc) · 2.09 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"FileVersion" : 3,
"Version": 1,
"VersionName": "4.27.0000",
"EngineVersion" : "4.27.0",
"FriendlyName" : "SkookumScript",
"Description": "The superpowered scripting language and tool suite.",
"Category": "Scripting",
"CreatedBy" : "Agog Labs Inc.",
"CreatedByURL" : "http://SkookumScript.com",
"DocsURL" : "http://skookumscript.com/docs/",
"MarketplaceURL" : "com.epicgames.launcher://ue/marketplace/content/38694f554c2c4b9f84c585256d509481",
"SupportURL": "http://forum.skookumscript.com/",
"EnabledByDefault" : true,
"CanContainContent" : false,
"IsBetaVersion" : false,
"Installed" : true,
"SupportedPrograms" : ["UnrealHeaderTool"],
"CanBeUsedWithUnrealHeaderTool" : true,
"Modules": [
{
"Name": "SkookumScriptGenerator",
"Type": "Program",
"LoadingPhase": "PostConfigInit",
"WhitelistPrograms" : ["UnrealHeaderTool"]
},
{
"Name": "SkookumScriptRuntime",
"Type": "Runtime",
"LoadingPhase": "PreLoadingScreen",
"WhitelistPlatforms": [
"Win64",
"Mac",
"Linux",
"IOS",
"TVOS",
"Android",
"XboxOne",
"PS4",
"Switch"
]
},
{
"Name": "AgogCore",
"Type": "Runtime",
"LoadingPhase": "None",
"WhitelistPlatforms": [
"Win64",
"Mac",
"Linux",
"IOS",
"TVOS",
"Android",
"XboxOne",
"PS4",
"Switch"
]
},
{
"Name": "SkookumScript",
"Type": "Runtime",
"LoadingPhase": "None",
"WhitelistPlatforms": [
"Win64",
"Mac",
"Linux",
"IOS",
"TVOS",
"Android",
"XboxOne",
"PS4",
"Switch"
]
},
{
"Name": "SkookumScriptEditor",
"Type": "Editor",
"LoadingPhase": "Default",
"WhitelistPlatforms": [
"Win64",
"Mac"
]
},
{
"Name": "SkookumScriptEditorGUI",
"Type": "Editor",
"LoadingPhase": "PostEngineInit",
"WhitelistPlatforms": [
"Win64",
"Mac"
]
}
]
}