Example #1
0
        public VideoClipEvents(VideoClipEvents clipEvents)
        {
            int count = clipEvents.Count;

            videoClips = new List <VideoClipEvent>(count);
            foreach (VideoClipEvent clipEvent in clipEvents)
            {
                videoClips.Add(clipEvent);
            }
        }
Example #2
0
 public static string ObjectToJSON(VideoClipEvents events)
 {
     return(JsonUtility.ToJson(events));
 }
Example #3
0
 public static string GetXml(VideoClipEvents events)
 {
     return(XMLHelpers.GetXMLFromObject(events));
 }