4014cacff8
* Creating Builder variant aliases for all Asset Gems * Added an AssetGem template for creating an Asset Gem The AssetGem template is meant for non-code Gems * Updated the engine_template.py commands to use pathlib Each of the four commands: create-template, create-from-template, create-project and create-gem have been updated to use pathlib.Path or any path manipulation Fix several python errors when instantiating a template with missing o3de objects. For example attempting to use the create-project command with the "DefaultGem" template would result in a python exception instaed of a error log and a return value 0.. Added a **force** option to the engine_template commands to force overriding of existing files * Optimized search through text files when the create-template command is run when attempting to replace the license text section * Adding a Minimal Project Template that contains the minimal set of gems as stated by UX * Minor changes to the DefaultProject template. Added a license section to the EngineFinder.cmake * Adding the MinimalProject to the engine.json file
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"template_name": "AssetGem",
|
|
"origin": "The primary repo for AssetGem goes here: i.e. http://www.mydomain.com",
|
|
"license": "What license AssetGem uses goes here: i.e. https://opensource.org/licenses/MIT",
|
|
"display_name": "AssetGem",
|
|
"summary": "A short description of AssetGem template.",
|
|
"canonical_tags": [],
|
|
"user_tags": [
|
|
"AssetGem"
|
|
],
|
|
"icon_path": "preview.png",
|
|
"copyFiles": [
|
|
{
|
|
"file": "CMakeLists.txt",
|
|
"origin": "CMakeLists.txt",
|
|
"isTemplated": true,
|
|
"isOptional": false
|
|
},
|
|
{
|
|
"file": "gem.json",
|
|
"origin": "gem.json",
|
|
"isTemplated": true,
|
|
"isOptional": false
|
|
},
|
|
{
|
|
"file": "preview.png",
|
|
"origin": "preview.png",
|
|
"isTemplated": false,
|
|
"isOptional": false
|
|
}
|
|
],
|
|
"createDirectories": [
|
|
{
|
|
"dir": "Assets",
|
|
"origin": "Assets"
|
|
}
|
|
]
|
|
}
|