// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Animation.Materials
{
///
/// The different animation modes available in
///
public enum UxrFlipbookAnimationMode
{
///
/// Frames are played back in a sequence, ending with the last frame.
///
SingleSequence,
///
/// Frames are played back in a sequence up to the last frame. The sequence starts again from the beginning
/// indefinitely.
///
Loop,
///
/// Frames are played back in a sequence up to the last frame and then back to the beginning again. This process is
/// repeated indefinitely.
///
PingPong,
///
/// Random frames are played indefinitely.
///
RandomFrame,
///
/// Random frames are played indefinitely but there are never two same frames played one after the other.
///
RandomFrameNoRepetition,
}
}