AnimNodeGroup.h 912 B

12345678910111213141516171819202122232425262728293031323334353637
  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. // Description : Anim Node Group
  9. #ifndef CRYINCLUDE_CRYMOVIE_ANIMNODEGROUP_H
  10. #define CRYINCLUDE_CRYMOVIE_ANIMNODEGROUP_H
  11. #pragma once
  12. #include "IMovieSystem.h"
  13. #include "AnimNode.h"
  14. //////////////////////////////////////////////////////////////////////////
  15. class CAnimNodeGroup
  16. : public CAnimNode
  17. {
  18. public:
  19. AZ_CLASS_ALLOCATOR(CAnimNodeGroup, AZ::SystemAllocator);
  20. AZ_RTTI(CAnimNodeGroup, "{6BDA5C06-7C15-4622-9550-68368E84D653}", CAnimNode);
  21. CAnimNodeGroup();
  22. CAnimNodeGroup(const int id);
  23. virtual CAnimParamType GetParamType(unsigned int nIndex) const;
  24. static void Reflect(AZ::ReflectContext* context);
  25. };
  26. #endif // CRYINCLUDE_CRYMOVIE_ANIMNODEGROUP_H