Skip to content

Commit

Permalink
fix #45
Browse files Browse the repository at this point in the history
  • Loading branch information
Derya authored Jun 22, 2018
1 parent 24307b3 commit cc02c62
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
using System.Collections.Generic;
using System.IO;
using System.Diagnostics;
using UnityEngine;
using UnityEngine;


public class PupilTools : MonoBehaviour
{
Expand Down Expand Up @@ -229,7 +230,7 @@ public static Vector3 VectorFromDictionary(Dictionary<string,object> source, str
public static float FloatFromDictionary(Dictionary<string,object> source, string key)
{
object value_o;
source.TryGetValue ("confidence", out value_o);
source.TryGetValue (key, out value_o);
return (float)(double)value_o;
}
private static object IDo;
Expand Down

0 comments on commit cc02c62

Please sign in to comment.