Commit a5bae0eca22d59f8e661b5cabcc075af9dcb25f3

Authored by ClaudiomarAraujo
1 parent e73d29fe
Exists in master and in 1 other branch devel

Retira framerate como parametro

Showing 1 changed file with 2 additions and 3 deletions   Show diff stats
Assets/Scripts/CameraCapture.cs
1   -/*************************************************
  1 + /*************************************************
2 2 * @Author: Icaro Magalhaes
3 3 *************************************************/
4   -
5 4 using UnityEngine;
6 5 using System;
7 6 using System.Threading;
... ... @@ -21,7 +20,7 @@ public class CameraCapture : MonoBehaviour{
21 20 strArg = Environment.GetCommandLineArgs();
22 21 folder = strArg[1];
23 22  
24   - if( strArg.Length == 4 ) frameRate = int.Parse(strArg[3]);
  23 + /*if( strArg.Length == 4 ) frameRate = int.Parse(strArg[3]);*/
25 24  
26 25 Debug.Log ("Folders can be found inside "+Application.persistentDataPath);
27 26  
... ...