-
Notifications
You must be signed in to change notification settings - Fork 78
/
PolygonalMapGenerator.uplugin
39 lines (39 loc) · 1.13 KB
/
PolygonalMapGenerator.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
{
"FileVersion": 3,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "Polygonal Map Generator",
"Description": "An Unreal Engine 4 implementation of the Polygonal Map Generator for generating islands found at http://www-cs-students.stanford.edu/~amitp/game-programming/polygon-map-generation/.",
"Category": "Rendering",
"CreatedBy": "Jay Stevens",
"CreatedByURL": "https://github.com/Jay2645",
"DocsURL": "https://github.com/Jay2645/Unreal-Polygonal-Map-Gen",
"MarketplaceURL": "https://github.com/Jay2645/Unreal-Polygonal-Map-Gen",
"SupportURL": "https://github.com/Jay2645/Unreal-Polygonal-Map-Gen",
"CanContainContent": true,
"IsBetaVersion": false,
"Installed": false,
"Modules": [
{
"Name": "Delaunator",
"Type": "Runtime",
"LoadingPhase": "PreDefault"
},
{
"Name": "DualMesh",
"Type": "Runtime",
"LoadingPhase": "PreDefault"
},
{
"Name": "PolygonalMapGenerator",
"Type": "Runtime",
"LoadingPhase": "PreDefault"
}
],
"Plugins": [
{
"Name": "ProceduralMeshComponent",
"Enabled": true
}
]
}