Skip to content

Commit 11164ee

Browse files
committed
Added LevelSequenceEditor as Plugin dependency per new 4.17 requirements
1 parent 4d8e098 commit 11164ee

File tree

1 file changed

+38
-32
lines changed

1 file changed

+38
-32
lines changed

UnrealEnginePython.uplugin

Lines changed: 38 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,40 @@
11
{
2-
"FileVersion": 3,
3-
"Version": 1,
4-
"VersionName": "1.0",
5-
"FriendlyName": "UnrealEnginePython",
6-
"Description": "Embed a Python VM in your project",
7-
"Category": "Scripting Languages",
8-
"CreatedBy": "Roberto De Ioris",
9-
"CreatedByURL": "",
10-
"DocsURL": "",
11-
"MarketplaceURL": "",
12-
"SupportURL": "",
13-
"EnabledByDefault": true,
14-
"CanContainContent": true,
15-
"IsBetaVersion": true,
16-
"Installed": false,
17-
"Modules": [
18-
{
19-
"Name": "UnrealEnginePython",
20-
"Type": "Runtime",
21-
"LoadingPhase": "Default"
22-
},
23-
{
24-
"Name": "PythonConsole",
25-
"Type": "Editor",
26-
"LoadingPhase": "PostDefault"
27-
},
28-
{
29-
"Name" : "PythonEditor",
30-
"Type" : "Editor",
31-
"LoadingPhase": "PostDefault"
32-
}
33-
]
2+
"FileVersion": 3,
3+
"Version": 1,
4+
"VersionName": "1.0",
5+
"FriendlyName": "UnrealEnginePython",
6+
"Description": "Embed a Python VM in your project",
7+
"Category": "Scripting Languages",
8+
"CreatedBy": "Roberto De Ioris",
9+
"CreatedByURL": "",
10+
"DocsURL": "",
11+
"MarketplaceURL": "",
12+
"SupportURL": "",
13+
"EnabledByDefault": true,
14+
"CanContainContent": true,
15+
"IsBetaVersion": true,
16+
"Installed": false,
17+
"Modules": [
18+
{
19+
"Name": "UnrealEnginePython",
20+
"Type": "Runtime",
21+
"LoadingPhase": "Default"
22+
},
23+
{
24+
"Name": "PythonConsole",
25+
"Type": "Editor",
26+
"LoadingPhase": "PostDefault"
27+
},
28+
{
29+
"Name": "PythonEditor",
30+
"Type": "Editor",
31+
"LoadingPhase": "PostDefault"
32+
}
33+
],
34+
"Plugins": [
35+
{
36+
"Name": "LevelSequenceEditor",
37+
"Enabled": true
38+
}
39+
]
3440
}

0 commit comments

Comments
 (0)