3
0

AnimGraphNode.h 946 B

12345678910111213141516171819202122232425
  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. namespace EMotionFX
  9. {
  10. class AnimGraphNode
  11. : public AnimGraphObject
  12. {
  13. public:
  14. AZ_RTTI(AnimGraphNode, "{7F1C0E1D-4D32-4A6D-963C-20193EA28F95}", AnimGraphObject)
  15. AZ_CLASS_ALLOCATOR(AnimGraphNode, AnimGraphAllocator)
  16. virtual ~AnimGraphNode() = default;
  17. MOCK_CONST_METHOD1(CollectOutgoingConnections, void(AZStd::vector<AZStd::pair<BlendTreeConnection*, AnimGraphNode*>>& outConnections));
  18. MOCK_CONST_METHOD2(CollectOutgoingConnections, void(AZStd::vector<AZStd::pair<BlendTreeConnection*, AnimGraphNode*>>& outConnections, const size_t portIndex));
  19. MOCK_CONST_METHOD1(FindOutputPortIndex, size_t(const AZStd::string& name));
  20. };
  21. } // namespace EMotionFX