MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / getAllAnimationGroupName

Method getAllAnimationGroupName

src/Core/Animation/Animation.cpp:72–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70 }
71
72 std::vector<std::string> Animation::getAllAnimationGroupName() const
73 {
74 std::vector<std::string> animationGroupKeys;
75 animationGroupKeys.reserve(m_groups.size());
76 std::transform(m_groups.cbegin(), m_groups.cend(), animationGroupKeys.begin(),
77 [](const auto& pair) { return pair.first; });
78 return animationGroupKeys;
79 }
80
81 AnimationPlayMode Animation::getPlayMode() const noexcept
82 {

Callers 2

Animation.cppFile · 0.80

Calls 5

reserveMethod · 0.45
sizeMethod · 0.45
cbeginMethod · 0.45
cendMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected