Reign.Video.Abstraction.SoftwareAction.SoftwareAction C# (CSharp) Method

SoftwareAction() public method

public SoftwareAction ( RMX_Action action ) : System
action RMX_Action
return System
        public SoftwareAction(RMX_Action action)
        {
            Name = action.Name;
            FrameStart = action.FrameStart;
            FrameEnd = action.FrameEnd;

            FCurves = new List<SoftwareFCurve>();
            foreach (var fcurve in action.FCurves)
            {
                FCurves.Add(new SoftwareFCurve(fcurve));
            }
        }
SoftwareAction