forked from crazytuzi/UnrealEnginePython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnrealEnginePython.uplugin
45 lines (45 loc) · 931 Bytes
/
UnrealEnginePython.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,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "UnrealEnginePython",
"Description": "Embed a Python VM in your project",
"Category": "Scripting Languages",
"CreatedBy": "Roberto De Ioris",
"CreatedByURL": "",
"DocsURL": "",
"MarketplaceURL": "",
"SupportURL": "",
"EnabledByDefault": true,
"CanContainContent": true,
"IsBetaVersion": true,
"Installed": false,
"Modules": [
{
"Name": "UnrealEnginePython",
"Type": "Runtime",
"LoadingPhase": "Default"
},
{
"Name": "PythonAutomation",
"Type": "Editor",
"LoadingPhase": "PostDefault"
},
{
"Name": "PythonConsole",
"Type": "Editor",
"LoadingPhase": "PostDefault"
},
{
"Name": "PythonEditor",
"Type": "Editor",
"LoadingPhase": "PostDefault"
}
],
"Plugins": [
{
"Name": "LevelSequenceEditor",
"Enabled": true
}
]
}