Add "Registry" folders as scan folders (#4583)
* Add "Registry" folders as scan folders For projects, Gems, and Engine, add the "Registry" folder as scan folders. Signed-off-by: amzn-phist <52085794+amzn-phist@users.noreply.github.com> * Change params for adding scan folder Also add trailing newlines to setreg files. Signed-off-by: amzn-phist <52085794+amzn-phist@users.noreply.github.com> * Adjust the priority order for project templates Scan folder orders were way too high, they should be very low to become highest priority order. Signed-off-by: amzn-phist <52085794+amzn-phist@users.noreply.github.com> * Removes change of default assets folder to Assets Need to revert this change so it can be done separately. Renamed the scan folder to 'Project/Assets' to prep for Assets folder change later on. Signed-off-by: amzn-phist <52085794+amzn-phist@users.noreply.github.com> * Update platform configuration test to pass Adjusted expectation of scan folder count from 1 to 2 per Gem for 'Assets' and 'Registry' now. Signed-off-by: amzn-phist <52085794+amzn-phist@users.noreply.github.com>monroegm-disable-blank-issue-2
parent
0217f45f3f
commit
80dcc34e6f
@ -1,14 +1,21 @@
|
||||
{
|
||||
"Amazon":
|
||||
{
|
||||
"${Name}.Assets":
|
||||
{
|
||||
"SourcePaths":
|
||||
[
|
||||
"Assets",
|
||||
"ShaderLib",
|
||||
"Shaders"
|
||||
]
|
||||
"Amazon": {
|
||||
"AssetProcessor": {
|
||||
"ScanFolder Project/ShaderLib": {
|
||||
"watch": "@PROJECTROOT@/ShaderLib",
|
||||
"recursive": 1,
|
||||
"order": 1
|
||||
},
|
||||
"ScanFolder Project/Shaders": {
|
||||
"watch": "@PROJECTROOT@/Shaders",
|
||||
"recurisve": 1,
|
||||
"order": 2
|
||||
},
|
||||
"ScanFolder Project/Registry": {
|
||||
"watch": "@PROJECTROOT@/Registry",
|
||||
"recursive": 1,
|
||||
"order": 3
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,14 +1,21 @@
|
||||
{
|
||||
"Amazon":
|
||||
{
|
||||
"${Name}.Assets":
|
||||
{
|
||||
"SourcePaths":
|
||||
[
|
||||
"Assets",
|
||||
"ShaderLib",
|
||||
"Shaders"
|
||||
]
|
||||
"Amazon": {
|
||||
"AssetProcessor": {
|
||||
"ScanFolder Project/ShaderLib": {
|
||||
"watch": "@PROJECTROOT@/ShaderLib",
|
||||
"recursive": 1,
|
||||
"order": 1
|
||||
},
|
||||
"ScanFolder Project/Shaders": {
|
||||
"watch": "@PROJECTROOT@/Shaders",
|
||||
"recurisve": 1,
|
||||
"order": 2
|
||||
},
|
||||
"ScanFolder Project/Registry": {
|
||||
"watch": "@PROJECTROOT@/Registry",
|
||||
"recursive": 1,
|
||||
"order": 3
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue