Commit a5bae0eca22d59f8e661b5cabcc075af9dcb25f3
1 parent
e73d29fe
Exists in
master
and in
1 other branch
Retira framerate como parametro
Showing
1 changed file
with
2 additions
and
3 deletions
Show diff stats
Assets/Scripts/CameraCapture.cs
| 1 | -/************************************************* | 1 | + /************************************************* |
| 2 | * @Author: Icaro Magalhaes | 2 | * @Author: Icaro Magalhaes |
| 3 | *************************************************/ | 3 | *************************************************/ |
| 4 | - | ||
| 5 | using UnityEngine; | 4 | using UnityEngine; |
| 6 | using System; | 5 | using System; |
| 7 | using System.Threading; | 6 | using System.Threading; |
| @@ -21,7 +20,7 @@ public class CameraCapture : MonoBehaviour{ | @@ -21,7 +20,7 @@ public class CameraCapture : MonoBehaviour{ | ||
| 21 | strArg = Environment.GetCommandLineArgs(); | 20 | strArg = Environment.GetCommandLineArgs(); |
| 22 | folder = strArg[1]; | 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 | Debug.Log ("Folders can be found inside "+Application.persistentDataPath); | 25 | Debug.Log ("Folders can be found inside "+Application.persistentDataPath); |
| 27 | 26 |