forked from NextGenIntelligence/SkookumScript-UnrealEngine-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkookumScript.uplugin
45 lines (43 loc) · 1.23 KB
/
SkookumScript.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
{
"FileVersion" : 3,
"FriendlyName" : "SkookumScript",
"Version" : 1,
"VersionName" : "3.0.2234",
"CreatedBy" : "Agog Labs Inc.",
"CreatedByURL" : "http://SkookumScript.com",
"DocsURL" : "http://skookumscript.com/docs/integrations/ue4plugin/",
"EngineVersion" : "4.12",
"Description" : "The powerful text-based gameplay scripting language with full IDE. Use as a turbo-charged command console on *any* project, or author your entire gameplay!",
"Category" : "Scripting",
"EnabledByDefault" : true,
"CanContainContent" : false,
"IsBetaVersion" : true,
"Installed" : true,
"CanBeUsedWithUnrealHeaderTool" : true,
"Modules" :
[
{
"Name" : "SkookumScriptGenerator",
"Type" : "Program",
"LoadingPhase" : "PostConfigInit"
},
{
"Name": "SkookumScriptRuntime",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"BlacklistPlatforms" : [ "HTML5" ]
},
{
"Name" : "SkookumScriptEditor",
"Type" : "Editor",
"LoadingPhase" : "Default",
"BlacklistPlatforms" : [ "HTML5" ]
},
{
"Name" : "SkookumScriptEditorGUI",
"Type" : "Editor",
"LoadingPhase" : "PostEngineInit",
"BlacklistPlatforms" : [ "HTML5" ]
}
]
}