2
0

atom_constants.py 486 B

12345678910111213141516171819
  1. """
  2. Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  3. SPDX-License-Identifier: Apache-2.0 OR MIT
  4. Hold constants used across both hydra and non-hydra scripts.
  5. """
  6. # Light type options for the Light component.
  7. LIGHT_TYPES = {
  8. 'unknown': 0,
  9. 'sphere': 1,
  10. 'spot_disk': 2,
  11. 'capsule': 3,
  12. 'quad': 4,
  13. 'polygon': 5,
  14. 'simple_point': 6,
  15. 'simple_spot': 7,
  16. }