Files
tyra-linux/engine/inc/renderer/3d/mesh/dynamic/animation_sequence_callback.hpp
T
2022-08-12 23:40:26 +02:00

26 lines
637 B
C++

/*
# _____ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2022, tyra - https://github.com/h4570/tyra
# Licensed under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#pragma once
namespace Tyra {
enum AnimationSequenceCallback {
/** On frame change */
AnimationSequenceCallback_NextFrame,
/** When animation in loop = false will end */
AnimationSequenceCallback_End,
/** When animation in loop = true will start from beginning */
AnimationSequenceCallback_Loop
};
} // namespace Tyra