Add P0 Deferred Fog Test

Signed-off-by: Sean Masterson <semaster@amazon.com>
This commit is contained in:
Sean Masterson
2021-11-04 16:56:46 -07:00
parent 2853c4d0dc
commit 708582731d
3 changed files with 199 additions and 0 deletions
@@ -86,11 +86,13 @@ class AtomComponentProperties:
- 'requires' a list of component names as strings required by this component.
Use editor_entity_utils EditorEntity.add_components(list) to add this list of requirements.\n
:param property: From the last element of the property tree path. Default 'name' for component name string.
- 'Enable Deferred Fog' Toggle active state of the component True/False
:return: Full property path OR component name if no property specified.
"""
properties = {
'name': 'Deferred Fog',
'requires': [AtomComponentProperties.postfx_layer()],
'Enable Deferred Fog': 'Controller|Configuration|Enable Deferred Fog',
}
return properties[property]