Exemplo n.º 1
0
        public VideoClipEvents(VideoClipEvents clipEvents)
        {
            int count = clipEvents.Count;

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