Apricot.Motion.Previous C# (CSharp) Method

Previous() public method

public Previous ( ) : bool
return bool
        public bool Previous()
        {
            this.framePosition--;

            if (this.framePosition >= 0)
            {
                return true;
            }
            else
            {
                this.framePosition = 0;
            }

            return false;
        }