void Animation::playAnimation() const
{
static const int index = 0;
const std::string& animationFileName =
m_animationContainer.getAnimationName(index);
static const int zOrder = -1;
static bool isLooping = false;
AnimationBank::play(animationFileName,
zOrder,
isLooping);
}
Gibt es einen Vorteil, konstante lokale Variablen als zu definieren static
? Oder es ist unnötig und sogar schlechte Praxis.