Skip to content

Commit d58cc2f

Browse files
Update 1
1 parent b311989 commit d58cc2f

10 files changed

Lines changed: 1420 additions & 9 deletions

File tree

.gitignore

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
1+
# Build artifacts
2+
**/Intermediate/
3+
**/Binaries/
4+
*.pdb
5+
*.dll
6+
*.lib
7+
*.modules
18

2-
# Visual Studio 2015 user specific files
9+
# VS Code
310
.vs/
11+
.vscode/
12+
.idea/
13+
*.code-workspace
14+
*.swp
15+
*.swo
16+
17+
# Operating System Files
18+
.DS_Store
19+
.DS_Store?
20+
._*
21+
.Spotlight-V100
22+
.Trashes
23+
ehthumbs.db
24+
Thumbs.db
25+
26+
# Keep Builds directory
27+
!Builds/**/
28+
29+
# Temp files
30+
*.tmp
31+
*.bak
32+
33+
# Project structure files
34+
generate_project_structure_txt.py
35+
project_structure.txt
436

537
# Compiled Object files
638
*.slo
@@ -72,4 +104,4 @@ Intermediate/*
72104
Plugins/*/Intermediate/*
73105

74106
# Cache files for the editor to use
75-
DerivedDataCache/*
107+
DerivedDataCache/*

AdvancedMaterialEditingLibrary.uplugin

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@
55
"FriendlyName": "AdvancedMaterialEditingLibrary",
66
"Description": "",
77
"Category": "Other",
8-
"CreatedBy": "Njibhu",
8+
"CreatedBy": "Njibhu, Extended by Edward Jaworenko",
99
"CreatedByURL": "",
1010
"DocsURL": "",
1111
"MarketplaceURL": "",
1212
"SupportURL": "",
13+
"EngineVersion": "5.5.0",
1314
"CanContainContent": true,
14-
"IsBetaVersion": false,
15-
"IsExperimentalVersion": false,
16-
"Installed": false,
15+
"Installed": true,
1716
"Modules": [
1817
{
1918
"Name": "AdvancedMaterialEditingLibrary",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"FileVersion": 3,
3+
"Version": 1,
4+
"VersionName": "1.0",
5+
"FriendlyName": "AdvancedMaterialEditingLibrary",
6+
"Description": "",
7+
"Category": "Other",
8+
"CreatedBy": "Njibhu",
9+
"CreatedByURL": "",
10+
"DocsURL": "",
11+
"MarketplaceURL": "",
12+
"SupportURL": "",
13+
"EngineVersion": "5.5.0",
14+
"CanContainContent": true,
15+
"Installed": true,
16+
"Modules": [
17+
{
18+
"Name": "AdvancedMaterialEditingLibrary",
19+
"Type": "Editor",
20+
"LoadingPhase": "PostEngineInit"
21+
}
22+
]
23+
}
12.4 KB
Loading

Content/Python/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)