vegetation_files.cmake 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. set(FILES
  9. Include/Vegetation/DescriptorListAsset.h
  10. Include/Vegetation/Descriptor.h
  11. Include/Vegetation/InstanceData.h
  12. Include/Vegetation/InstanceSpawner.h
  13. Include/Vegetation/EmptyInstanceSpawner.h
  14. Include/Vegetation/PrefabInstanceSpawner.h
  15. Include/Vegetation/AreaComponentBase.h
  16. Include/Vegetation/Ebuses/AreaSystemRequestBus.h
  17. Include/Vegetation/Ebuses/AreaNotificationBus.h
  18. Include/Vegetation/Ebuses/AreaConfigRequestBus.h
  19. Include/Vegetation/Ebuses/AreaDebugBus.h
  20. Include/Vegetation/Ebuses/AreaInfoBus.h
  21. Include/Vegetation/Ebuses/AreaRequestBus.h
  22. Include/Vegetation/Ebuses/DebugNotificationBus.h
  23. Include/Vegetation/Ebuses/DebugRequestsBus.h
  24. Include/Vegetation/Ebuses/DebugSystemDataBus.h
  25. Include/Vegetation/Ebuses/DescriptorNotificationBus.h
  26. Include/Vegetation/Ebuses/DescriptorProviderRequestBus.h
  27. Include/Vegetation/Ebuses/DescriptorSelectorRequestBus.h
  28. Include/Vegetation/Ebuses/FilterRequestBus.h
  29. Include/Vegetation/Ebuses/InstanceSystemRequestBus.h
  30. Include/Vegetation/Ebuses/ModifierRequestBus.h
  31. Include/Vegetation/Ebuses/SystemConfigurationBus.h
  32. Include/Vegetation/Ebuses/ScaleModifierRequestBus.h
  33. Include/Vegetation/Ebuses/SlopeAlignmentModifierRequestBus.h
  34. Include/Vegetation/Ebuses/RotationModifierRequestBus.h
  35. Include/Vegetation/Ebuses/PositionModifierRequestBus.h
  36. Include/Vegetation/Ebuses/SurfaceAltitudeFilterRequestBus.h
  37. Include/Vegetation/Ebuses/DistanceBetweenFilterRequestBus.h
  38. Include/Vegetation/Ebuses/DistributionFilterRequestBus.h
  39. Include/Vegetation/Ebuses/ShapeIntersectionFilterRequestBus.h
  40. Include/Vegetation/Ebuses/SurfaceSlopeFilterRequestBus.h
  41. Include/Vegetation/Ebuses/SurfaceMaskDepthFilterRequestBus.h
  42. Include/Vegetation/Ebuses/SurfaceMaskFilterRequestBus.h
  43. Include/Vegetation/Ebuses/AreaBlenderRequestBus.h
  44. Include/Vegetation/Ebuses/BlockerRequestBus.h
  45. Include/Vegetation/Ebuses/DescriptorListCombinerRequestBus.h
  46. Include/Vegetation/Ebuses/MeshBlockerRequestBus.h
  47. Include/Vegetation/Ebuses/SpawnerRequestBus.h
  48. Include/Vegetation/Ebuses/DescriptorListRequestBus.h
  49. Source/Components/AreaBlenderComponent.cpp
  50. Source/Components/AreaBlenderComponent.h
  51. Source/Components/AreaComponentBase.cpp
  52. Source/Components/BlockerComponent.cpp
  53. Source/Components/BlockerComponent.h
  54. Source/Components/DescriptorListCombinerComponent.cpp
  55. Source/Components/DescriptorListCombinerComponent.h
  56. Source/Components/DescriptorListComponent.cpp
  57. Source/Components/DescriptorListComponent.h
  58. Source/Components/DescriptorWeightSelectorComponent.cpp
  59. Source/Components/DescriptorWeightSelectorComponent.h
  60. Source/Components/DistanceBetweenFilterComponent.cpp
  61. Source/Components/DistanceBetweenFilterComponent.h
  62. Source/Components/DistributionFilterComponent.cpp
  63. Source/Components/DistributionFilterComponent.h
  64. Source/Components/LevelSettingsComponent.cpp
  65. Source/Components/LevelSettingsComponent.h
  66. Source/Components/MeshBlockerComponent.cpp
  67. Source/Components/MeshBlockerComponent.h
  68. Source/Components/PositionModifierComponent.cpp
  69. Source/Components/PositionModifierComponent.h
  70. Source/Components/RotationModifierComponent.cpp
  71. Source/Components/RotationModifierComponent.h
  72. Source/Components/ScaleModifierComponent.cpp
  73. Source/Components/ScaleModifierComponent.h
  74. Source/Components/ShapeIntersectionFilterComponent.cpp
  75. Source/Components/ShapeIntersectionFilterComponent.h
  76. Source/Components/SlopeAlignmentModifierComponent.cpp
  77. Source/Components/SlopeAlignmentModifierComponent.h
  78. Source/Components/SpawnerComponent.cpp
  79. Source/Components/SpawnerComponent.h
  80. Source/Components/SurfaceAltitudeFilterComponent.cpp
  81. Source/Components/SurfaceAltitudeFilterComponent.h
  82. Source/Components/SurfaceMaskDepthFilterComponent.cpp
  83. Source/Components/SurfaceMaskDepthFilterComponent.h
  84. Source/Components/SurfaceMaskFilterComponent.cpp
  85. Source/Components/SurfaceMaskFilterComponent.h
  86. Source/Components/SurfaceSlopeFilterComponent.cpp
  87. Source/Components/SurfaceSlopeFilterComponent.h
  88. Source/Debugger/AreaDebugComponent.cpp
  89. Source/Debugger/AreaDebugComponent.h
  90. Source/Debugger/DebugComponent.cpp
  91. Source/Debugger/DebugComponent.h
  92. Source/DescriptorListAsset.cpp
  93. Source/Descriptor.cpp
  94. Source/EmptyInstanceSpawner.cpp
  95. Source/PrefabInstanceSpawner.cpp
  96. Source/VegetationSystemComponent.cpp
  97. Source/VegetationSystemComponent.h
  98. Source/InstanceData.cpp
  99. Source/InstanceSystemComponent.cpp
  100. Source/InstanceSystemComponent.h
  101. Source/DebugSystemComponent.cpp
  102. Source/DebugSystemComponent.h
  103. )