AssImpSkinImporter.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. #pragma once
  9. #include <SceneAPI/SceneBuilder/ImportContexts/AssImpImportContexts.h>
  10. #include <SceneAPI/SceneCore/Components/LoadingComponent.h>
  11. namespace AZ
  12. {
  13. namespace SceneAPI
  14. {
  15. namespace SceneBuilder
  16. {
  17. class AssImpSkinImporter
  18. : public SceneCore::LoadingComponent
  19. {
  20. public:
  21. AZ_COMPONENT(AssImpSkinImporter, "{8FBCA725-C04E-42B7-9669-82DB3BB0901F}", SceneCore::LoadingComponent);
  22. AssImpSkinImporter();
  23. ~AssImpSkinImporter() override = default;
  24. static void Reflect(ReflectContext* context);
  25. Events::ProcessingResult ImportSkin(AssImpNodeEncounteredContext& context);
  26. };
  27. } // namespace SceneBuilder
  28. } // namespace SceneAPI
  29. } // namespace AZ