コード例 #1
0
ファイル: Viewer.cs プロジェクト: wraikny/Effekseer
        public bool Record(string path, int count, int offsetFrame, int freq, swig.TransparenceType transparenceType)
        {
            var dir      = System.IO.Path.GetDirectoryName(path);
            var fileWExt = System.IO.Path.GetFileNameWithoutExtension(path);
            var ext      = System.IO.Path.GetExtension(path);

            return(native.Record(dir + "/" + fileWExt, ext, count, offsetFrame, freq, transparenceType));
        }
コード例 #2
0
ファイル: Viewer.cs プロジェクト: wraikny/Effekseer
 public bool RecordAsAVI(string path, int count, int offsetFrame, int freq, swig.TransparenceType transparenceType)
 {
     return(native.RecordAsAVI(path, count, offsetFrame, freq, transparenceType));
 }