From 5b70b2a8a95f88e9267d26b93d3b98907cf5269a Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Mon, 18 Oct 2021 14:37:57 -0700 Subject: [PATCH] reordering constant and class in file Signed-off-by: Scott Murray --- .../Atom/atom_utils/atom_constants.py | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/AutomatedTesting/Gem/PythonTests/Atom/atom_utils/atom_constants.py b/AutomatedTesting/Gem/PythonTests/Atom/atom_utils/atom_constants.py index e6c422eb46..b66e5f77e4 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/atom_utils/atom_constants.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/atom_utils/atom_constants.py @@ -7,6 +7,19 @@ Hold constants used across both hydra and non-hydra scripts. """ +# Light type options for the Light component. +LIGHT_TYPES = { + 'unknown': 0, + 'sphere': 1, + 'spot_disk': 2, + 'capsule': 3, + 'quad': 4, + 'polygon': 5, + 'simple_point': 6, + 'simple_spot': 7, +} + + class AtomComponentProperties: """ Holds Atom component related constants @@ -372,16 +385,3 @@ class AtomComponentProperties: 'requires': [AtomComponentProperties.postfx_layer()], } return properties[property] - - -# Light type options for the Light component. -LIGHT_TYPES = { - 'unknown': 0, - 'sphere': 1, - 'spot_disk': 2, - 'capsule': 3, - 'quad': 4, - 'polygon': 5, - 'simple_point': 6, - 'simple_spot': 7, -}