fliXNA_xbox.FlxAnim.FlxAnim C# (CSharp) Method

FlxAnim() public method

public FlxAnim ( String Name, int Frames, float FrameRate, System.Boolean Looped ) : System
Name String
Frames int
FrameRate float
Looped System.Boolean
return System
        public FlxAnim(String Name, int[] Frames, float FrameRate, Boolean Looped)
        {
            name = Name;
            delay = 0;
            if (FrameRate > 0)
                delay = 1.0f / FrameRate;
            frames = Frames;
            looped = Looped;
        }