2
0

NodeWrapper.cpp 865 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. #include <SceneAPI/SDKWrapper/NodeWrapper.h>
  9. namespace AZ
  10. {
  11. namespace SDKNode
  12. {
  13. const char* NodeWrapper::GetName() const
  14. {
  15. return "";
  16. }
  17. AZ::u64 NodeWrapper::GetUniqueId() const
  18. {
  19. return 0;
  20. }
  21. int NodeWrapper::GetMaterialCount() const
  22. {
  23. return -1;
  24. }
  25. int NodeWrapper::GetChildCount()const
  26. {
  27. return -1;
  28. }
  29. const std::shared_ptr<NodeWrapper> NodeWrapper::GetChild([[maybe_unused]] int childIndex) const
  30. {
  31. return {};
  32. }
  33. }// namespace Node
  34. }//namespace AZ