blob: 4ac608b9531a207efdb31ff3320795c3044fc1d8 [file]
#ifndef _RIVE_ADVANCE_FLAGS_HPP_
#define _RIVE_ADVANCE_FLAGS_HPP_
#include "rive/enums.hpp"
namespace rive
{
enum class AdvanceFlags : unsigned short
{
None = 0,
/// Whether NestedArtboards should advance
AdvanceNested = 1 << 0,
/// Whether the Component should animate when advancing
Animate = 1 << 1,
/// Whether this Component is on the root artboard
IsRoot = 1 << 2,
/// Whether we are advancing to a new frame
NewFrame = 1 << 3,
};
} // namespace rive
#endif