Skip to content

Commit

Permalink
feat(plugins): added more plugins
Browse files Browse the repository at this point in the history
* Made FlatNodes plugin part of the project (through submodule) so that you would not have to install it into your engine manually
* Added SnapCentral plugin to the project (disabled by default since I could not get it to package properly on windows and it does not support macos supposedly)
* Added Blockout Tools Plugin (submodule) to project to allow for easier level creation and prototyping
* Updated gitignore to ignore default platforms directory (created when playing on platform instead of in editor)
* Updated gitignore to ignore vsconfig file
* Updated gitignore to ignore packaged directory (which is what i selected when packaging)
* Updated project image
* Updated engine config for windows shader model 6 config
  • Loading branch information
finger563 committed Jul 6, 2023
1 parent 95972fd commit e3a8b0c
Show file tree
Hide file tree
Showing 9 changed files with 257 additions and 199 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,6 @@ unreal/DerivedDataCache/*
**/Binaries
**/Saved
*.blend1
Platforms/
packaged/
.vsconfig
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,12 @@
[submodule "unreal/Content/Ultimate_Magic_Bundle"]
path = unreal/Content/Ultimate_Magic_Bundle
url = [email protected]:well-known-game-studio/Ultimate_Magic_Bundle
[submodule "unreal/Plugins/SnapCentral"]
path = unreal/Plugins/SnapCentral
url = [email protected]:well-known-game-studio/snapcentral
[submodule "unreal/Plugins/FlatNodes"]
path = unreal/Plugins/FlatNodes
url = [email protected]:well-known-game-studio/flatnodes
[submodule "unreal/Plugins/BlockoutToolsPlugin"]
path = unreal/Plugins/BlockoutToolsPlugin
url = [email protected]:well-known-game-studio/blockouttoolsplugin
248 changes: 139 additions & 109 deletions unreal/Config/DefaultEngine.ini

Large diffs are not rendered by default.

Binary file modified unreal/Content/Wot/Maps/Diorama/Diorama_TestMap.umap
Binary file not shown.
1 change: 1 addition & 0 deletions unreal/Plugins/BlockoutToolsPlugin
Submodule BlockoutToolsPlugin added at 203c6a
1 change: 1 addition & 0 deletions unreal/Plugins/FlatNodes
Submodule FlatNodes added at 55777c
1 change: 1 addition & 0 deletions unreal/Plugins/SnapCentral
Submodule SnapCentral added at 1c199c
Binary file modified unreal/VoxelRPG.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
193 changes: 103 additions & 90 deletions unreal/VoxelRPG.uproject
Original file line number Diff line number Diff line change
@@ -1,91 +1,104 @@
{
"FileVersion": 3,
"EngineAssociation": "5.2",
"Category": "",
"Description": "",
"Modules": [
{
"Name": "VoxelRPG",
"Type": "Runtime",
"LoadingPhase": "Default",
"AdditionalDependencies": [
"Engine",
"CinematicCamera",
"Niagara",
"AIModule",
"GameplayTasks",
"UMG",
"GameplayTags",
"DialogueBuilder"
]
}
],
"Plugins": [
{
"Name": "AnimationWarping",
"Enabled": true
},
{
"Name": "GameFeatures",
"Enabled": true
},
{
"Name": "ModularGameplay",
"Enabled": true
},
{
"Name": "StandaloneFeatures",
"Enabled": true
},
{
"Name": "EnhancedInput",
"Enabled": true
},
{
"Name": "Water",
"Enabled": true
},
{
"Name": "WaterExtras",
"Enabled": true
},
{
"Name": "DialogueBuilder",
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/0757846060534a32aa333e37f9e2706d"
},
{
"Name": "Bridge",
"Enabled": true,
"SupportedTargetPlatforms": [
"Win64",
"Mac",
"Linux"
]
},
{
"Name": "NiagaraFluids",
"Enabled": true
},
{
"Name": "FlatNodes",
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/b719437f3fb54c259b34227363df8cab"
},
{
"Name": "RawInput",
"Enabled": true
},
{
"Name": "WinDualShock",
"Enabled": true,
"SupportedTargetPlatforms": [
"Win64"
]
},
{
"Name": "SteamController",
"Enabled": true
}
]
{
"FileVersion": 3,
"EngineAssociation": "5.2",
"Category": "",
"Description": "",
"Modules": [
{
"Name": "VoxelRPG",
"Type": "Runtime",
"LoadingPhase": "Default",
"AdditionalDependencies": [
"Engine",
"CinematicCamera",
"Niagara",
"AIModule",
"GameplayTasks",
"UMG",
"GameplayTags",
"DialogueBuilder"
]
}
],
"Plugins": [
{
"Name": "AnimationWarping",
"Enabled": true
},
{
"Name": "GameFeatures",
"Enabled": true
},
{
"Name": "ModularGameplay",
"Enabled": true
},
{
"Name": "StandaloneFeatures",
"Enabled": true
},
{
"Name": "EnhancedInput",
"Enabled": true
},
{
"Name": "Water",
"Enabled": true
},
{
"Name": "WaterExtras",
"Enabled": true
},
{
"Name": "DialogueBuilder",
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/0757846060534a32aa333e37f9e2706d"
},
{
"Name": "Bridge",
"Enabled": true,
"SupportedTargetPlatforms": [
"Win64",
"Mac",
"Linux"
]
},
{
"Name": "NiagaraFluids",
"Enabled": true
},
{
"Name": "FlatNodes",
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/b719437f3fb54c259b34227363df8cab"
},
{
"Name": "RawInput",
"Enabled": true
},
{
"Name": "WinDualShock",
"Enabled": true,
"SupportedTargetPlatforms": [
"Win64"
]
},
{
"Name": "SteamController",
"Enabled": true
},
{
"Name": "BlockoutToolsPlugin",
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/d337b97aca8947a893526964e179acfd"
},
{
"Name": "SnapCentral",
"Enabled": false,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/be6daf89e1f046eab98338d9a0315bfc",
"SupportedTargetPlatforms": [
"Win64"
]
}
]
}

0 comments on commit e3a8b0c

Please sign in to comment.